name: Docker Image CI on: workflow_call: inputs: tag: required: true type: string image_name: required: true type: string old_image_name: required: false type: string target: required: true type: string dockerfile: required: false type: string default: Dockerfile env: REGISTRY: ghcr.io MAKE_ARGS: ${{ inputs.target }}=1 DIGEST_PATH: /tmp/digests/${{ inputs.target }} DIGEST_NAME_SUFFIX: ${{ inputs.target }} DOCKERFILE: ${{ inputs.dockerfile }} jobs: build: strategy: fail-fast: false matrix: include: - runner: ubuntu-latest platform: linux/amd64 - runner: ubuntu-24.04-arm platform: linux/arm64 name: Build ${{ matrix.platform }} runs-on: ${{ matrix.runner }} permissions: contents: read packages: write id-token: write attestations: write steps: - name: Prepare run: | platform=${{ matrix.platform }} echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV - name: Docker meta id: meta uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ inputs.image_name }} tags: | type=raw,value=${{ inputs.tag }},event=branch type=ref,event=tag - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 with: platforms: ${{ matrix.platform }} - name: Login to registry uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push by digest id: build uses: docker/build-push-action@v6 with: platforms: ${{ matrix.platform }} labels: ${{ steps.meta.outputs.labels }} file: ${{ env.DOCKERFILE }} outputs: type=image,name=${{ env.REGISTRY }}/${{ inputs.image_name }},push-by-digest=true,name-canonical=true,push=true cache-from: | type=registry,ref=${{ env.REGISTRY }}/${{ inputs.image_name }}:buildcache-${{ env.PLATFORM_PAIR }} type=gha,scope=${{ github.workflow }}-${{ env.PLATFORM_PAIR }} cache-to: | type=registry,ref=${{ env.REGISTRY }}/${{ inputs.image_name }}:buildcache-${{ env.PLATFORM_PAIR }},mode=max type=gha,scope=${{ github.workflow }}-${{ env.PLATFORM_PAIR }},mode=max build-args: | VERSION=${{ github.ref_name }} MAKE_ARGS=${{ env.MAKE_ARGS }} - name: Generate artifact attestation uses: actions/attest-build-provenance@v1 with: subject-name: ${{ env.REGISTRY }}/${{ inputs.image_name }} subject-digest: ${{ steps.build.outputs.digest }} push-to-registry: true - name: Export digest run: | mkdir -p ${{ env.DIGEST_PATH }} digest="${{ steps.build.outputs.digest }}" touch "${{ env.DIGEST_PATH }}/${digest#sha256:}" - name: Upload digest uses: actions/upload-artifact@v4 with: name: digests-${{ env.PLATFORM_PAIR }}-${{ env.DIGEST_NAME_SUFFIX }} path: ${{ env.DIGEST_PATH }}/* if-no-files-found: error retention-days: 1 merge: needs: build runs-on: ubuntu-latest permissions: contents: read packages: write id-token: write steps: - name: Download digests uses: actions/download-artifact@v4 with: path: ${{ env.DIGEST_PATH }} pattern: digests-*-${{ env.DIGEST_NAME_SUFFIX }} merge-multiple: true - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ inputs.image_name }} tags: | type=raw,value=${{ inputs.tag }},event=branch type=ref,event=tag - name: Login to registry uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Create manifest list and push id: push working-directory: ${{ env.DIGEST_PATH }} run: | docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ $(printf '${{ env.REGISTRY }}/${{ inputs.image_name }}@sha256:%s ' *) - name: Old image name if: inputs.old_image_name != '' run: | docker buildx imagetools create -t ${{ env.REGISTRY }}/${{ inputs.old_image_name }}:${{ steps.meta.outputs.version }}\ ${{ env.REGISTRY }}/${{ inputs.image_name }}:${{ steps.meta.outputs.version }} - name: Inspect image run: | docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ inputs.image_name }}:${{ steps.meta.outputs.version }} - name: Inspect image (old) if: inputs.old_image_name != '' run: | docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ inputs.old_image_name }}:${{ steps.meta.outputs.version }}