|
|
@@ -1,9 +1,6 @@
|
|
|
name: Docker build and publish
|
|
|
|
|
|
-# This workflow uses actions that are not certified by GitHub.
|
|
|
-# They are provided by a third-party and are governed by
|
|
|
-# separate terms of service, privacy policy, and support
|
|
|
-# documentation.
|
|
|
+# 参见: https://docs.docker.com/build/ci/github-actions/multi-platform/
|
|
|
|
|
|
on:
|
|
|
push:
|
|
|
@@ -19,10 +16,18 @@ env:
|
|
|
# github.repository as <account>/<repo>
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
|
|
-
|
|
|
jobs:
|
|
|
build:
|
|
|
runs-on: ubuntu-latest
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ platform:
|
|
|
+ - linux/i386
|
|
|
+ - linux/amd64
|
|
|
+ - linux/arm/v6
|
|
|
+ - linux/arm/v7
|
|
|
+ - linux/arm64
|
|
|
|
|
|
permissions:
|
|
|
contents: read
|
|
|
@@ -32,8 +37,13 @@ jobs:
|
|
|
id-token: write
|
|
|
|
|
|
steps:
|
|
|
+ - name: Prepare
|
|
|
+ run: |
|
|
|
+ platform=${{ matrix.platform }}
|
|
|
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
|
|
+
|
|
|
- name: Checkout repository
|
|
|
- uses: actions/checkout@v3
|
|
|
+ uses: actions/checkout@v4
|
|
|
|
|
|
# Install the cosign tool except on PR
|
|
|
# https://github.com/sigstore/cosign-installer
|
|
|
@@ -43,38 +53,90 @@ jobs:
|
|
|
with:
|
|
|
cosign-release: 'v2.1.1'
|
|
|
|
|
|
+ - name: Docker meta
|
|
|
+ id: meta
|
|
|
+ uses: docker/metadata-action@v5
|
|
|
+ with:
|
|
|
+ images: ${{ env.IMAGE_NAME }}
|
|
|
+
|
|
|
+ - name: Set up QEMU
|
|
|
+ uses: docker/setup-qemu-action@v3
|
|
|
+
|
|
|
# Set up BuildKit Docker container builder to be able to build
|
|
|
# multi-platform images and export cache
|
|
|
# https://github.com/docker/setup-buildx-action
|
|
|
- name: Set up Docker Buildx
|
|
|
- uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
|
|
|
+ uses: docker/setup-buildx-action@v3
|
|
|
|
|
|
# Login against a Docker registry except on PR
|
|
|
# https://github.com/docker/login-action
|
|
|
- name: Log into registry ${{ env.REGISTRY }}
|
|
|
if: github.event_name != 'pull_request'
|
|
|
- uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
|
|
|
+ uses: docker/login-action@v3
|
|
|
with:
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
username: ${{ github.actor }}
|
|
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
|
|
|
|
- # Extract metadata (tags, labels) for Docker
|
|
|
- # https://github.com/docker/metadata-action
|
|
|
- - name: Extract Docker metadata
|
|
|
- id: meta
|
|
|
- uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
|
|
|
- with:
|
|
|
- images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
-
|
|
|
# Build and push Docker image with Buildx (don't push on PR)
|
|
|
# https://github.com/docker/build-push-action
|
|
|
- name: Build and push Docker image
|
|
|
- id: build-and-push
|
|
|
- uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
|
|
|
+ id: build
|
|
|
+ uses: docker/build-push-action@v5
|
|
|
with:
|
|
|
context: .
|
|
|
- platforms: linux/i386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
|
|
|
+ platforms: ${{ matrix.platform }}
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
- tags: ${{ steps.meta.outputs.tags }}
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
+ outputs: type=image,name=${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
|
|
|
+
|
|
|
+ - name: Export digest
|
|
|
+ run: |
|
|
|
+ mkdir -p /tmp/digests
|
|
|
+ digest="${{ steps.build.outputs.digest }}"
|
|
|
+ touch "/tmp/digests/${digest#sha256:}"
|
|
|
+
|
|
|
+ - name: Upload digest
|
|
|
+ uses: actions/upload-artifact@v4
|
|
|
+ with:
|
|
|
+ name: digests-${{ env.PLATFORM_PAIR }}
|
|
|
+ path: /tmp/digests/*
|
|
|
+ if-no-files-found: error
|
|
|
+ retention-days: 1
|
|
|
+
|
|
|
+ merge:
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ needs:
|
|
|
+ - build
|
|
|
+ steps:
|
|
|
+ - name: Download digests
|
|
|
+ uses: actions/download-artifact@v4
|
|
|
+ with:
|
|
|
+ path: /tmp/digests
|
|
|
+ pattern: digests-*
|
|
|
+ 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.IMAGE_NAME }}
|
|
|
+
|
|
|
+ - name: Login to Docker Hub
|
|
|
+ uses: docker/login-action@v3
|
|
|
+ with:
|
|
|
+ username: ${{ github.actor }}
|
|
|
+ password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
|
+
|
|
|
+ - name: Create manifest list and push
|
|
|
+ working-directory: /tmp/digests
|
|
|
+ run: |
|
|
|
+ docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
|
|
+ $(printf '${{ env.IMAGE_NAME }}@sha256:%s ' *)
|
|
|
+
|
|
|
+ - name: Inspect image
|
|
|
+ run: |
|
|
|
+ docker buildx imagetools inspect ${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.version }}
|