From 939c86192d4fbd9d604ecc9a214ed17df11bbc23 Mon Sep 17 00:00:00 2001 From: Brendan Shephard Date: Thu, 27 Feb 2025 13:48:04 +1000 Subject: [PATCH] Also use current-podified tag for latest image All other projects have a current-podified tag, this change ensures our latest image also shares this tag. Signed-off-by: Brendan Shephard --- .github/workflows/edpm-bootc.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/edpm-bootc.yaml b/.github/workflows/edpm-bootc.yaml index 94f9a55..d580ac6 100644 --- a/.github/workflows/edpm-bootc.yaml +++ b/.github/workflows/edpm-bootc.yaml @@ -13,6 +13,7 @@ env: imageregistry: 'quay.io' imagenamespace: ${{ secrets.IMAGENAMESPACE || secrets.QUAY_USERNAME }} latesttag: latest + podified: current-podified jobs: @@ -60,7 +61,7 @@ jobs: uses: redhat-actions/buildah-build@v2 with: image: edpm-bootc - tags: ${{ env.latesttag }} ${{ github.sha }} + tags: ${{ env.latesttag }} ${{ github.sha }} ${{ env.podified }} containerfiles: | ./bootc/Containerfile.centos9 context: bootc