We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd98947 commit a065cf5Copy full SHA for a065cf5
.github/workflows/dotnet.yml
@@ -26,3 +26,22 @@ jobs:
26
run: dotnet build --no-restore
27
- name: Test
28
run: dotnet test --no-build --verbosity normal
29
+ publish:
30
+ name: publish-nuget
31
+ runs-on: ubuntu-latest
32
+ steps:
33
+ - uses: actions/checkout@v2
34
+
35
+ - name: Setup dotnet
36
+ uses: actions/setup-dotnet@v1
37
+ with:
38
+ dotnet-version: 6.0.*
39
40
+ # Publish
41
+ - name: publish on version change
42
+ id: publish_nuget
43
+ uses: SpringHgui/[email protected]
44
45
+ # Filepath of the project to be packaged, relative to root of repository
46
+ PROJECT_FILE_PATH: HashedWheelTimer/WheelTimer.csproj
47
+ NUGET_KEY: ${{secrets.NUGET_API_KEY}}
0 commit comments