Skip to content

Commit

Permalink
ci: escape special characters in tag messages
Browse files Browse the repository at this point in the history
  • Loading branch information
liby committed Jan 10, 2024
1 parent 3ca8f79 commit dd123bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ jobs:
- run: git checkout -- src/

- name: Update appcast.json
env:
VERSION: ${{ steps.get_version.outputs.version-without-v }}
MESSAGE: ${{ steps.tag.outputs.message }}
run: |
python3 scripts/update_release.py ${{ steps.get_version.outputs.version-without-v }} '${{ steps.tag.outputs.message }}'
python3 scripts/update_release.py "$VERSION" "$MESSAGE"
- name: Commit files
run: |
Expand Down

0 comments on commit dd123bc

Please sign in to comment.