Skip to content

Commit

Permalink
ci: sanitize ref name
Browse files Browse the repository at this point in the history
  • Loading branch information
Kneemund committed Nov 1, 2024
1 parent c8088c0 commit 77677f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set installer name
id: set_installer_name
shell: bash
run: echo "name=rnote-win-installer-$(echo ${GITHUB_REF_NAME#v})-x86_64" >> $GITHUB_OUTPUT
run: echo "name=rnote-win-installer-$(echo ${GITHUB_REF_NAME#v} | sed -e 's/[^A-Za-z0-9._-]/_/g')-x86_64" >> $GITHUB_OUTPUT
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
Expand Down

0 comments on commit 77677f1

Please sign in to comment.