Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(main.yml): add main branch and all tags to trigger conditions to… #2188

Merged
merged 8 commits into from
Jul 17, 2024
Prev Previous commit
Next Next commit
fix(main.yml): correct choco push command by enclosing $chocoFile in …
…quotes to ensure correct file path handling
  • Loading branch information
MrHinsh committed Jul 17, 2024
commit 9a638733faac280c99642b4deea4d3ba20142e25
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,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