Skip to content

Commit

Permalink
workflows: add debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
Kantonov committed Feb 16, 2024
1 parent 0ef94b9 commit 7749e83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/nuget-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
run: dotnet build Zotapay --configuration Release --no-restore /p:Version=${{github.event.release.tag_name}}

- name: Package
run: dotnet pack --no-build --configuration Release Zotapay/Zotapay.csproj --output . /p:Version=${{github.event.release.tag_name}}
run: |
dotnet pack --no-build --configuration Release Zotapay/Zotapay.csproj --output . /p:Version=${{github.event.release.tag_name}}
ls -la
- name: Push Package
run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}}

0 comments on commit 7749e83

Please sign in to comment.