Skip to content

Commit

Permalink
feat(main.yml): add output log for choco push command to improve debu…
Browse files Browse the repository at this point in the history
…gging

fix(main.yml): correct choco push command syntax for proper execution
  • Loading branch information
MrHinsh committed Jul 17, 2024
1 parent 804086e commit 532edf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ jobs:
} else {
Write-Output $"Running with {$chocoFile}"
}
choco push "$chocoFile" --version $NuGetVersion --key ${{ secrets.CHOCO_APIKEY }} --source https://push.chocolatey.org/
Write-Output 'choco push "$chocoFile" --key "${{ secrets.CHOCO_APIKEY }}" --source "https://push.chocolatey.org/"'
choco push "$chocoFile" --key "${{ secrets.CHOCO_APIKEY }}" --source "https://push.chocolatey.org/"
# Release to Winget
Expand Down

0 comments on commit 532edf7

Please sign in to comment.