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