fix
All checks were successful
Gitea Actions Demo / lint (push) Successful in 19s
Gitea Actions Demo / test (push) Successful in 12s
Gitea Actions Demo / docker (push) Successful in 2m46s

This commit is contained in:
Ryan Cavicchioni 2025-04-27 09:58:10 -05:00
parent b667d8729d
commit 6f04f40e5b
Signed by: ryanc
SSH Key Fingerprint: SHA256:KbXiwUnZnHFwFtt3Bytd+F3FN9pPHn1Z1cxMIE1TPbg
2 changed files with 1 additions and 31 deletions

View File

@ -114,36 +114,6 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
targets: "bookworm"
files: |
./docker-bake.hcl
cwd://${{ steps.meta.outputs.bake-file }}
- name: Docker meta
id: meta
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
with:
images: |
git.kill0.net/ryanc/kubernaut
flavor: |
latest=false
suffix=alpine
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Docker build and push
uses: docker/bake-action@76f9fa3a758507623da19f6092dc4089a7e61592 # v6.6.0
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
targets: "alpine"
files: |
./docker-bake.hcl
cwd://${{ steps.meta.outputs.bake-file }}

View File

@ -16,5 +16,5 @@ target "bookworm" {
target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common" ]
tags = [ "git.kill0.net/ryanc/kubernaut" ]
tags = [ "git.kill0.net/ryanc/kubernaut:alpine" ]
}