Skip to content

Commit 23f64b9

Browse files
committed
Drop PR build and unique tags
1 parent 224f653 commit 23f64b9

File tree

4 files changed

+3
-28
lines changed

4 files changed

+3
-28
lines changed

.github/workflows/development.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -205,28 +205,3 @@ jobs:
205205
They will be retained for **up to 30 days**.
206206
`
207207
})
208-
209-
build-and-push-container:
210-
runs-on: ubuntu-latest
211-
permissions:
212-
packages: write
213-
steps:
214-
- name: Checkout
215-
uses: actions/checkout@v4
216-
- name: Buildah build
217-
id: build-image
218-
uses: redhat-actions/buildah-build@v2
219-
with:
220-
image: ${{ github.event.repository.name }}
221-
tags: ${{ github.sha }}
222-
containerfiles: |
223-
./deploy/Containerfile
224-
- name: Push To ghcr.io
225-
id: push-to-ghcr
226-
uses: redhat-actions/push-to-registry@v2
227-
with:
228-
image: ${{ steps.build-image.outputs.image }}
229-
tags: ${{ steps.build-image.outputs.tags }}
230-
username: ${{ github.actor }}
231-
password: ${{ github.token }}
232-
registry: ghcr.io/${{ github.repository_owner }}

.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)