Skip to content

Commit f329306

Browse files
committed
fix
1 parent 89bb95f commit f329306

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
id: get-tag
2121
run: |
2222
if [ "${{ github.event_name }}" == "pull_request" ]; then
23-
PR_TITLE = "${{ github.event.pull_request.title }}"
24-
PR_TAG = $(echo "${PR_TITLE}" | sed -e 's/ /-/g')
23+
PR_TITLE="${{ github.event.pull_request.title }}"
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)