Skip to content

Commit 89bb95f

Browse files
committed
echo
1 parent 0634d6f commit 89bb95f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-image-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
if [ "${{ github.event_name }}" == "pull_request" ]; then
2323
PR_TITLE = "${{ github.event.pull_request.title }}"
24-
PR_TAG = $("${PR_TITLE}" | sed -e 's/ /-/g')
24+
PR_TAG = $(echo "${PR_TITLE}" | sed -e 's/ /-/g')
2525
echo "TAG=${PR_TAG}-${{ github.sha }}" >> $GITHUB_OUTPUT
2626
else
2727
echo "TAG=${GITHUB_REF##*/}-${{ github.sha }}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)