Skip to content

Commit 0f67017

Browse files
committed
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 `"' ```
1 parent 94d73e5 commit 0f67017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow-templates/release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
)" != \
6161
"" \
6262
]]; then
63-
echo "IS_PRE=true" >> $GITHUB_OUTPUT"
63+
echo "IS_PRE=true" >> $GITHUB_OUTPUT
6464
fi
6565
6666
- name: Create Github release

0 commit comments

Comments
 (0)