Skip to content

Commit

Permalink
Try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay committed Feb 15, 2023
1 parent ae82eb7 commit ea6d224
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
runs-on: ubuntu-latest

env:
NUGET_SOURCE: https://api.nuget.org/v3/index.json
NUGET_AUTH_TOKEN: ${{secrets.NUGET_API_KEY}}
PROJECT_PATH: Funogram.Telegram

Expand All @@ -40,4 +41,4 @@ jobs:
dotnet pack -c Release -o out
- name: Push generated package to GitHub registry
run: dotnet nuget push ./$PROJECT_PATH/out/*.nupkg -k ${NUGET_AUTH_TOKEN} --skip-duplicate --no-symbols true
run: dotnet nuget push ./$PROJECT_PATH/out/*.nupkg -k ${NUGET_AUTH_TOKEN} -s ${NUGET_SOURCE} --skip-duplicate --no-symbols true

0 comments on commit ea6d224

Please sign in to comment.