Skip to content

Commit a402d6c

Browse files
committed
Drop unique tags
1 parent 166efe9 commit a402d6c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237
uses: redhat-actions/buildah-build@v2
238238
with:
239239
image: ${{ github.event.repository.name }}
240-
tags: ${{ github.sha }}
240+
tags: "pr-${{ github.event.number }}"
241241
containerfiles: |
242242
./deploy/Containerfile
243243
- name: Push To ghcr.io

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
uses: redhat-actions/buildah-build@v2
136136
with:
137137
image: ${{ github.event.repository.name }}
138-
tags: nightly ${{ github.sha }}
138+
tags: nightly
139139
containerfiles: |
140140
./deploy/Containerfile
141141
- name: Push To ghcr.io

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
with:
129129
image: ${{ github.event.repository.name }}
130130
# TODO: Tag version
131-
tags: latest ${{ github.sha }}
131+
tags: latest
132132
containerfiles: |
133133
./deploy/Containerfile
134134
- name: Push To ghcr.io

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
with:
128128
image: ${{ github.event.repository.name }}
129129
# TODO: Tag version
130-
tags: latest stable ${{ github.sha }}
130+
tags: latest stable
131131
containerfiles: |
132132
./deploy/Containerfile
133133
- name: Push To ghcr.io

0 commit comments

Comments
 (0)