Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ jobs:
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.2.x'
- run: dotnet build Bandwidth.Standard
- run: dotnet pack --configuration Release Bandwidth.Standard
- name: Publish NuGet package
- name: Build project
run: dotnet build -c Bandwidth.Standard
- name: Package project
run: dotnet pack -c Release Bandwidth.Standard
- name: Push package
env:
NUGET_SOURCE: https://apiint.nugettest.org/v3/index.json
NUGET_KEY: ${{ secrets.NUGET_KEY }}
run: dotnet nuget push Bandwidth.Standard/bin/Release/*.nupkg -s https://apiint.nugettest.org/v3/index.json -k $NUGET_KEY
run: dotnet nuget push Bandwidth.Standard/bin/Release/*.nupkg -s $SOURCE -k $NUGET_KEY
Binary file not shown.
Loading