Skip to content

Commit

Permalink
CI: Deal with ' in commit title
Browse files Browse the repository at this point in the history
  • Loading branch information
has2k1 committed Apr 24, 2024
1 parent e76977b commit 91702a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
set -xe
CAN_DEPLOY=$(python ../utils/please.py can_i_deploy_documentation)
DEPLOY_TO=$(python ../utils/please.py where_can_i_deploy_documentation)
TITLE=$(echo '${{ github.event.head_commit.message }}' | head -n 1)
TITLE=$(echo "'${{ github.event.head_commit.message }}'" | head -n 1)
echo "can_deploy=$CAN_DEPLOY" >> $GITHUB_OUTPUT
echo "deploy_to=$DEPLOY_TO" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 91702a7

Please sign in to comment.