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 409f8dc + fc0d36e commit f3f2f5aCopy full SHA for f3f2f5a
.github/workflows/deploy.yml
@@ -13,12 +13,8 @@ jobs:
13
- uses: actions/setup-dotnet@v1
14
with:
15
dotnet-version: '2.2.x'
16
- source-url: https://apiint.nugettest.org/v3/index.json
+ - run: dotnet build Bandwidth.Standard
17
+ - run: dotnet pack --configuration Release Bandwidth.Standard
18
env:
- NUGET_AUTH_TOKEN: ${{ secrets.NUGET_KEY }}
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 -k $NUGET_AUTH_TOKEN
+ 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
0 commit comments