102 lines
2.8 KiB
YAML
102 lines
2.8 KiB
YAML
|
name: Build Docker images
|
||
|
run-name: Build Docker images ${{ github.event.release.tag_name }}
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Build images
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
platform:
|
||
|
- linux/amd64
|
||
|
- linux/arm64
|
||
|
- linux/arm/v7
|
||
|
- linux/arm/v6
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v3
|
||
|
|
||
|
- name: Docker meta
|
||
|
id: meta
|
||
|
uses: docker/metadata-action@v5
|
||
|
with:
|
||
|
images: ghcr.io/${{ github.repository }}
|
||
|
|
||
|
- name: Login to GitHub Container Registry
|
||
|
uses: docker/login-action@v3
|
||
|
with:
|
||
|
registry: ghcr.io
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|
||
|
- name: inject go-build-cache into docker
|
||
|
uses: reproducible-containers/buildkit-cache-dance@v2.1.2
|
||
|
with:
|
||
|
cache-source: go-build-cache
|
||
|
|
||
|
- name: Build and push Docker images
|
||
|
id: build
|
||
|
uses: docker/build-push-action@v5
|
||
|
with:
|
||
|
context: .
|
||
|
platforms: ${{ matrix.platform }}
|
||
|
labels: ${{ steps.meta.outputs.labels }}
|
||
|
outputs: type=image,name=ghcr.io/${{ github.repository }},push-by-digest=true,name-canonical=true,push=true
|
||
|
cache-from: type=gha
|
||
|
cache-to: type=gha,mode=max
|
||
|
build-args: |
|
||
|
version=${{ github.event.release.tag_name }}
|
||
|
|
||
|
- 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@v3
|
||
|
with:
|
||
|
name: digests
|
||
|
path: /tmp/digests/*
|
||
|
if-no-files-found: error
|
||
|
retention-days: 1
|
||
|
|
||
|
merge:
|
||
|
name: Merge images
|
||
|
runs-on: ubuntu-latest
|
||
|
needs: build
|
||
|
steps:
|
||
|
- name: Download digests
|
||
|
uses: actions/download-artifact@v3
|
||
|
with:
|
||
|
name: digests
|
||
|
path: /tmp/digests
|
||
|
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v3
|
||
|
|
||
|
- name: Docker meta
|
||
|
id: meta
|
||
|
uses: docker/metadata-action@v5
|
||
|
with:
|
||
|
images: ghcr.io/${{ github.repository }}
|
||
|
|
||
|
- name: Login to GitHub Container Registry
|
||
|
uses: docker/login-action@v3
|
||
|
with:
|
||
|
registry: ghcr.io
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.GITHUB_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 'ghcr.io/${{ github.repository }}@sha256:%s ' *)
|