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.
2 parents 4ab1788 + cfbf47c commit 32ea502Copy full SHA for 32ea502
.github/workflows/deploy.yml
@@ -4,8 +4,8 @@ on:
4
types:
5
- published
6
jobs:
7
- build:
8
- name: Build
+ publish:
+ name: Publish
9
if: ${{ !github.event.release.prerelease && github.event.release.target_commitish == 'master' }}
10
runs-on: windows-latest
11
steps:
@@ -16,5 +16,9 @@ jobs:
16
source-url: https://apiint.nugettest.org/v3/index.json
17
env:
18
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_KEY }}
19
- - run: dotnet pack --configuration Release Bandwidth.Standard
20
- - run: dotnet nuget push Bandwidth.Standard/bin/Release/*.nupkg
+ - name: Build
+ run: dotnet build Bandwidth.Standard
21
+ - name: Pack
22
+ run: dotnet pack --configuration Release Bandwidth.Standard
23
+ - name: Push
24
+ run: dotnet nuget push Bandwidth.Standard/bin/Release/*.nupkg
0 commit comments