We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e0457c commit 19e4ab7Copy full SHA for 19e4ab7
.github/workflows/continuous-integration.yml
@@ -7,7 +7,7 @@ env:
7
ContinuousIntegrationBuild: true
8
9
jobs:
10
- test:
+ package:
11
strategy:
12
matrix:
13
os: [ macos-latest, ubuntu-latest, windows-latest ]
@@ -27,14 +27,14 @@ jobs:
27
- run: dotnet pack --no-build --verbosity normal
28
publish-release:
29
runs-on: macos-latest
30
- needs: test
+ needs: package
31
if: startsWith(github.ref, 'refs/tags')
32
name: Publish package on nuget.org
33
steps:
34
- run: dotnet nuget push "**/*.nupkg" --source https://api.nuget.org/v3/index.json --api-key "${{ secrets.NUGET_API_KEY }}"
35
publish-prerelease:
36
37
38
if: github.ref == 'refs/heads/deploy'
39
name: Publish package on github.com
40
0 commit comments