We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0634d6f commit 89bb95fCopy full SHA for 89bb95f
.github/workflows/build-image-builder.yml
@@ -21,7 +21,7 @@ jobs:
21
run: |
22
if [ "${{ github.event_name }}" == "pull_request" ]; then
23
PR_TITLE = "${{ github.event.pull_request.title }}"
24
- PR_TAG = $("${PR_TITLE}" | sed -e 's/ /-/g')
+ PR_TAG = $(echo "${PR_TITLE}" | sed -e 's/ /-/g')
25
echo "TAG=${PR_TAG}-${{ github.sha }}" >> $GITHUB_OUTPUT
26
else
27
echo "TAG=${GITHUB_REF##*/}-${{ github.sha }}" >> $GITHUB_OUTPUT
0 commit comments