ci: always publish under latest tag
All checks were successful
Build container / base-build (push) Successful in 3m12s

This commit is contained in:
Job
2025-10-16 17:12:30 +02:00
parent 475cbeec03
commit 97c3a83496

View File

@@ -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