Use raw string

This commit is contained in:
jspijker 2023-02-28 13:04:50 +01:00
parent ed2db086c0
commit 87ce8a8871

View file

@ -297,7 +297,7 @@ jobs:
f.write(content)
f.writelines("# ${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }} uses:\n")
for dep in sorted_deps:
f.writelines(f"{dep.replace('#', '\#')}\n")
f.writelines(f"{dep.replace('#', r'\#')}\n")
- name: Archive the artifacts (bash)
if: ${{ !inputs.installer && runner.os != 'Windows' }}