Skip to content

Commit 38e03ba

Browse files
authored
Merge pull request #385 from ma10/fix-release-wf-20250826
Fix a syntax issue in the release workflow.
2 parents 1e5b92c + ed55995 commit 38e03ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/reusable-get-build-targets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
CURRENT_PUSHED_TAG=""
4848
if [[ "${IS_TAG_PUSH}" == "true" ]]; then
49-
CURRENT_PUSHED_TAG="$(echo ${GITHUB_REFNAME} | sed s/refs\/tags\///)"
49+
CURRENT_PUSHED_TAG="$(echo ${GITHUB_REFNAME} | sed 's/refs\/tags\///')"
5050
fi
5151
5252
# Handle manual workflow dispatch with target_ref

0 commit comments

Comments
 (0)