From 6e2dca7d434eb75af67cc4305784337aabd4c44e Mon Sep 17 00:00:00 2001 From: jspijker Date: Tue, 28 Feb 2023 18:59:44 +0100 Subject: [PATCH] Output as code --- .github/workflows/cura-installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 79f511ee49..998ef067f7 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -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}\n") + f.writelines(f"`{dep}`\n") - name: Archive the artifacts (bash) if: ${{ !inputs.installer && runner.os != 'Windows' }}