From 97c3a8349627934d627d7f4bd75dd6a932a2e645 Mon Sep 17 00:00:00 2001 From: Job79 Date: Thu, 16 Oct 2025 17:12:30 +0200 Subject: [PATCH] ci: always publish under latest tag --- .gitea/workflows/ci.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 6bf9714..ecfe8ef 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -27,25 +27,33 @@ jobs: context: ./containers/base file: ./containers/base/Containerfile push: true - tags: git.plabble.org/job79/base:${{ github.ref_name }} + tags: | + git.plabble.org/job79/base:${{ github.ref_name }} + git.plabble.org/job79/base:latest - name: Build and push go container uses: docker/build-push-action@v5 with: context: ./containers/go file: ./containers/go/Containerfile push: true - tags: git.plabble.org/job79/go:${{ github.ref_name }} + tags: | + git.plabble.org/job79/go:${{ github.ref_name }} + git.plabble.org/job79/go:latest - name: Build and push infra container uses: docker/build-push-action@v5 with: context: ./containers/infra file: ./containers/infra/Containerfile push: true - tags: git.plabble.org/job79/infra:${{ github.ref_name }} + tags: | + git.plabble.org/job79/infra:${{ github.ref_name }} + git.plabble.org/job79/infra:latest - name: Build and push kali container uses: docker/build-push-action@v5 with: context: ./containers/kali file: ./containers/kali/Containerfile push: true - tags: git.plabble.org/job79/kali:${{ github.ref_name }} + tags: | + git.plabble.org/job79/kali:${{ github.ref_name }} + git.plabble.org/job79/kali:latest