Commit af08b90
fix: correct expression quoting in release.yml containers list (#1936)
The needs[] bracket expressions used doubled single quotes
(needs[''build-squid'']) inside a YAML literal block (|). In a
literal block there is no YAML quote escaping, so the doubled
quotes were passed verbatim to the expression evaluator, causing:
Unexpected symbol: 'build-squid''' at position 9
Fix by switching the shell strings from single to double quotes,
allowing single quotes inside ${{ }} expressions to work correctly.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent 567dad9 commit af08b90
1 file changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
511 | 511 | | |
512 | 512 | | |
513 | 513 | | |
514 | | - | |
515 | | - | |
516 | | - | |
517 | | - | |
518 | | - | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
519 | 519 | | |
520 | 520 | | |
521 | 521 | | |
| |||
0 commit comments