Merge pull request #238 from kerberos-io/fix/docker-build-release-action

fix/docker-build-release-action
This commit is contained in:
Cédric Verstraeten
2026-02-13 22:17:33 +01:00
committed by GitHub

View File

@@ -34,7 +34,7 @@ jobs:
length: 7
- name: Run Build
run: |
docker build --build-arg VERSION=${{github.event.inputs.tag || github.ref_name}} -t ${{matrix.architecture}} .
docker build --provenance=false --build-arg VERSION=${{github.event.inputs.tag || github.ref_name}} -t ${{matrix.architecture}} .
CID=$(docker create ${{matrix.architecture}})
docker cp ${CID}:/home/agent ./output-${{matrix.architecture}}
docker rm ${CID}
@@ -71,7 +71,7 @@ jobs:
length: 7
- name: Run Build
run: |
docker build --build-arg VERSION=${{github.event.inputs.tag || github.ref_name}} -t ${{matrix.architecture}} -f Dockerfile.arm64 .
docker build --provenance=false --build-arg VERSION=${{github.event.inputs.tag || github.ref_name}} -t ${{matrix.architecture}} -f Dockerfile.arm64 .
CID=$(docker create ${{matrix.architecture}})
docker cp ${CID}:/home/agent ./output-${{matrix.architecture}}
docker rm ${CID}