Commit cca8ab5
Fix publish GHA.
```
# expansion is pretty cool
# https://www.gnu.org/software/bash/manual/html_node/Shell-Expansions.html
echo "hello `world`"
echo "hello ${world}"
# single quotes disable expansion
# https://www.gnu.org/software/bash/manual/html_node/Single-Quotes.html
echo 'hello `world`'
echo 'hello ${world}'
# Problem - single quotes in single quotes
echo 'hello ' world'
# Fix #1: quote the single quote, which is exciting
echo 'hello '"'"' world'
# Fix #2: heredoc, maybe more readable but awkward
# https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Here-Documents
echo <<'EOF'
hello ' world
EOF
```
PiperOrigin-RevId: 6755861611 parent f1df51a commit cca8ab5
1 file changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
93 | 96 | | |
94 | 97 | | |
95 | 98 | | |
| |||
0 commit comments