We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89bb95f commit f329306Copy full SHA for f329306
.github/workflows/build-image-builder.yml
@@ -20,8 +20,8 @@ jobs:
20
id: get-tag
21
run: |
22
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')
+ PR_TITLE="${{ github.event.pull_request.title }}"
+ 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