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 11b0b6a commit e1eb2e4Copy full SHA for e1eb2e4
.github/actions/get-image-tag/action.yml
@@ -31,6 +31,11 @@ runs:
31
sha=$(echo ${{ github.sha }} | head -c7)
32
ts=$(date +%s)
33
tag=${env}-${sha}-${ts}
34
+ if [[ "${{ github.ref_name }}" == re2-*-* ]]; then
35
+ env=$(echo ${{ github.ref_name }} | cut -d- -f2)
36
+ sha=$(echo ${{ github.sha }} | head -c7)
37
+ ts=$(date +%s)
38
+ tag=${env}-${sha}-${ts}
39
elif [[ "${{ github.ref_name }}" == v.docker.* ]]; then
40
version="${GITHUB_REF_NAME#v.docker.}"
41
tag="v${version}"
0 commit comments