From 0f670179b0a93940d2a0cf7046ceaae140b34256 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 25 Jun 2023 22:29:09 -0700 Subject: [PATCH] Remove extra quote from shell command in release-tag workflow A stray quote was present in a shell command in the workflow. This caused a spurious failure of the "Identify Prerelease" step: ``` unexpected EOF while looking for matching `"' ``` --- workflow-templates/release-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-templates/release-tag.yml b/workflow-templates/release-tag.yml index f0573d1d..93034d77 100644 --- a/workflow-templates/release-tag.yml +++ b/workflow-templates/release-tag.yml @@ -60,7 +60,7 @@ jobs: )" != \ "" \ ]]; then - echo "IS_PRE=true" >> $GITHUB_OUTPUT" + echo "IS_PRE=true" >> $GITHUB_OUTPUT fi - name: Create Github release