Add escape characters

This commit is contained in:
jspijker 2023-02-28 12:41:02 +01:00
parent 87ddb134a4
commit 7912a6cc4f

View File

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