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 5df1b7e commit 483162aCopy full SHA for 483162a
.github/actions/get-image-tag/action.yml
@@ -37,13 +37,13 @@ runs:
37
elif [[ "${{ github.ref_name }}" == build-* ]]; then
38
tag="${GITHUB_REF_NAME#build-}"
39
else
40
- echo "Invalid tag: ${{ github.ref_name }}"
+ echo "Invalid git tag: ${{ github.ref_name }}"
41
exit 1
42
fi
43
elif [[ "${{ github.ref_name }}" == "main" ]]; then
44
tag="main"
45
46
- echo "Invalid reference: ${{ github.ref }}"
+ echo "Invalid git ref: ${{ github.ref }}"
47
48
49
echo "tag=${tag}" >> "$GITHUB_OUTPUT"
0 commit comments