Skip to content

Commit cdfd918

Browse files
authored
Merge pull request #2623 from robnester-rh/EC-1188
feat(ci): add prefixes to distinguish image tags by build system
2 parents 8ebb4d0 + 6147b41 commit cdfd918

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
env:
6363
IMAGE_REPO: quay.io/conforma/cli
64-
TAG: ${{ github.sha }}
64+
TAG: gh-${{ github.sha }}
6565
TAG_TIMESTAMP: ${{ github.sha }}-${{ needs.info.outputs.timestamp }}
6666

6767
steps:

hack/copy-snapshot-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ IMAGE_REF="$(echo "${SNAPSHOT_SPEC}" | jq -r '.components[0].containerImage')"
3232

3333
TAGS=(
3434
'latest'
35-
"${GIT_SHA}"
35+
"kf-${GIT_SHA}"
3636
)
3737
for tag in "${TAGS[@]}"; do
3838
echo "Pushing image with tag ${tag}"

0 commit comments

Comments
 (0)