Skip to content

Commit

Permalink
fix(main.yml): correct choco push command by removing .FullName from …
Browse files Browse the repository at this point in the history
…$chocoFile to avoid potential path issues
  • Loading branch information
MrHinsh committed Jul 16, 2024
1 parent 6127eea commit e12182d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ jobs:
Write-Output $"Running with {$chocoFile}"
}
choco push $chocoFile.FullName --version $NuGetVersion --key ${{ secrets.CHOCO_APIKEY }} --source https://push.chocolatey.org/
choco push "$chocoFile" --version $NuGetVersion --key ${{ secrets.CHOCO_APIKEY }} --source https://push.chocolatey.org/
# Release to Winget
Expand Down

0 comments on commit e12182d

Please sign in to comment.