We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6663c87 commit 0c50279Copy full SHA for 0c50279
.github/workflows/multi_publish.yml
@@ -40,6 +40,10 @@ jobs:
40
JSON_ARRAY=$(echo "[\"$(echo ${{ inputs.branches }} | tr ' ' '\",\"')\"]")
41
echo "branches=$JSON_ARRAY" >> "$GITHUB_OUTPUT"
42
echo "Branches: $JSON_ARRAY" >> "$GITHUB_STEP_SUMMARY"
43
+ echo "`dry_run`: ${{ inputs.dry_run }}" >> "$GITHUB_STEP_SUMMARY"
44
+ echo "`!dry_run`: ${{ !inputs.dry_run }}" >> "$GITHUB_STEP_SUMMARY"
45
+ echo "`dry_run=='true'`: ${{ inputs.dry_run == 'true' }}" >> "$GITHUB_STEP_SUMMARY"
46
+ echo "`dry_run=='false'`: ${{ inputs.dry_run == 'false' }}" >> "$GITHUB_STEP_SUMMARY"
47
48
publish_each:
49
runs-on: ubuntu-latest
0 commit comments