Skip to content

Commit 3cd9550

Browse files
committed
CI: Wrap GHA variables in double quotes
Not fool proof, but it will not choke when the commit title has a single quote.
1 parent 00b6f94 commit 3cd9550

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
3434
- name: See outputs
3535
run: |
36-
echo 'deploy_to=${{ steps.variables.outputs.deploy_to }}'
37-
echo 'commit_title=${{ steps.variables.outputs.commit_title }}'
36+
echo deploy_to="${{ steps.variables.outputs.deploy_to }}"
37+
echo commit_title="${{ steps.variables.outputs.commit_title }}"
3838
3939
build-documentation:
4040
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)