Skip to content

Commit 0bbaf03

Browse files
committed
Drop unique tags
1 parent 224f653 commit 0bbaf03

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
@@ -218,7 +218,7 @@ jobs:
218218
uses: redhat-actions/buildah-build@v2
219219
with:
220220
image: ${{ github.event.repository.name }}
221-
tags: ${{ github.sha }}
221+
tags: "pr-${{ github.event.number }}"
222222
containerfiles: |
223223
./deploy/Containerfile
224224
- 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)