Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ghost1face/base62
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1face committed Aug 8, 2021
2 parents 8ba7a30 + f0c79c7 commit a14a489
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/dotnet-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ jobs:
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x' # SDK Version to use.
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.NUGET_TOKEN}}
- run: dotnet build --configuration Release .
- name: Create the package
run: dotnet pack --configuration Release .
- name: Publish the package to GPR
run: dotnet nuget push Base62/bin/Release/*.nupkg
- name: Publish the package to nuget.org
run: dotnet nuget push Base62/bin/Release/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.NUGET_TOKEN}}

0 comments on commit a14a489

Please sign in to comment.