From 1a9640b286e8e71e21b3f5f894bbffc9c27ab486 Mon Sep 17 00:00:00 2001 From: tommie Date: Mon, 20 Mar 2023 18:04:05 +0100 Subject: [PATCH] Escape backticks. Really, I did escape them, and then I removed the sed command and replaced it, and forgot to re-add it. Seriously. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 08ce6eb..005e8c2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -63,8 +63,8 @@ jobs: id: show-output run: | echo "## Job Outputs" >>"$GITHUB_STEP_SUMMARY" - echo "* `innernet_release=${{ steps.check-latest-release.outputs.innernet_release }}` >>"$GITHUB_STEP_SUMMARY" - echo "* `new_release_exists=${{ steps.check-repo-release.outputs.new_release_exists }}` >>"$GITHUB_STEP_SUMMARY" + echo "* \`innernet_release=${{ steps.check-latest-release.outputs.innernet_release }}\` >>"$GITHUB_STEP_SUMMARY" + echo "* \`new_release_exists=${{ steps.check-repo-release.outputs.new_release_exists }}\` >>"$GITHUB_STEP_SUMMARY" build-deb: name: Build DEB Packages