2024-05-04 20:53:35 +02:00
|
|
|
name: Build and publish container images
|
|
|
|
|
2024-03-13 23:30:56 +00:00
|
|
|
on:
|
2024-05-04 20:53:35 +02:00
|
|
|
push: { branches: [ main ] }
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
packages: write
|
2024-03-13 23:30:56 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-05-04 20:53:35 +02:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
outputs:
|
|
|
|
commit: ${{ steps.metadata.outputs.commit }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
architecture: [ amd64, arm64v8 ]
|
|
|
|
include:
|
|
|
|
- architecture: amd64
|
|
|
|
platform: linux/amd64
|
|
|
|
- architecture: arm64v8
|
|
|
|
platform: linux/arm64
|
2024-03-13 23:30:56 +00:00
|
|
|
steps:
|
2024-05-04 20:53:35 +02:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Obtain project metadata
|
|
|
|
id: metadata
|
|
|
|
run: echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- name: Setup Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
|
|
|
|
- name: Setup QEMU
|
|
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
|
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Generate image metadata
|
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
id: image-metadata
|
|
|
|
with:
|
|
|
|
images: ghcr.io/${{ github.repository }}
|
|
|
|
tags: |
|
|
|
|
type=raw,value=${{ matrix.architecture }}-${{ steps.metadata.outputs.commit }},enable={{is_default_branch}}
|
|
|
|
type=raw,value=${{ matrix.architecture }},enable={{is_default_branch}}
|
|
|
|
|
|
|
|
- name: Build and push platform specific images
|
2024-07-14 00:02:18 +00:00
|
|
|
uses: docker/build-push-action@v6
|
2024-05-04 20:53:35 +02:00
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
platforms: ${{ matrix.platform }}
|
|
|
|
tags: ${{ steps.image-metadata.outputs.tags }}
|
|
|
|
|
|
|
|
merge:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: [ build ]
|
|
|
|
env:
|
|
|
|
IMAGE: ghcr.io/${{ github.repository }}
|
|
|
|
COMMIT: ${{ needs.build.outputs.commit }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Log in to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Generate manifest for multi-arch images from source manifests
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools create \
|
|
|
|
--tag ${IMAGE}:${COMMIT} ${IMAGE}:{amd64,arm64v8}-${COMMIT}
|
|
|
|
docker buildx imagetools create \
|
|
|
|
--tag ${IMAGE}:latest ${IMAGE}:{amd64,arm64v8}
|