Adjust release triggers to use cache-writable token (#12030)

This commit is contained in:
Michal Kinas
2026-07-03 07:56:50 +02:00
committed by GitHub
parent 7f57b3936b
commit 4cd8648a05
3 changed files with 15 additions and 22 deletions
+2 -2
View File
@@ -23,8 +23,8 @@ runs:
env:
DRY_RUN_FLAG: ${{ inputs.dry-run-flag }}
run: |
if [[ '$DRY_RUN_FLAG' == 'true' ]]; then
echo "dryrun=--dryrun" >> $GITHUB_OUTPUT;
if [[ "$DRY_RUN_FLAG" == 'true' ]]; then
echo "dryrun=--dry-run" >> $GITHUB_OUTPUT;
echo "enabling dryrun"
else
echo "dryrun=" >> $GITHUB_OUTPUT;