Skip to content

Commit 32ea502

Browse files
authored
Merge pull request #16 from hamermike/test/pr
Update deploy.yml
2 parents 4ab1788 + cfbf47c commit 32ea502

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
types:
55
- published
66
jobs:
7-
build:
8-
name: Build
7+
publish:
8+
name: Publish
99
if: ${{ !github.event.release.prerelease && github.event.release.target_commitish == 'master' }}
1010
runs-on: windows-latest
1111
steps:
@@ -16,5 +16,9 @@ jobs:
1616
source-url: https://apiint.nugettest.org/v3/index.json
1717
env:
1818
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_KEY }}
19-
- run: dotnet pack --configuration Release Bandwidth.Standard
20-
- run: dotnet nuget push Bandwidth.Standard/bin/Release/*.nupkg
19+
- name: Build
20+
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

Comments
 (0)