From 2d0dccdaa9c8f3f73542ec7ce260333adc175683 Mon Sep 17 00:00:00 2001 From: Cedric Kienzler Date: Mon, 11 Sep 2023 16:22:41 +0200 Subject: [PATCH] Add github action workflow for docker build This commit adds the docker build workflow to build docker images for amd64 and arm64 and publishes the image to ghcr.io This fixes #16 --- .github/workflows/docker-build.yaml | 48 +++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/docker-build.yaml diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml new file mode 100644 index 0000000..ac9bb88 --- /dev/null +++ b/.github/workflows/docker-build.yaml @@ -0,0 +1,48 @@ +name: Docker Build + +on: + push: + branches: + - main + tags: + - "v*" + pull_request: + workflow_dispatch: + +jobs: + build_and_publish_docker_images: + name: "Build and Publish Docker" + runs-on: ubuntu-latest + permissions: + packages: write + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: ghcr.io/${{ github.repository }} + + - name: Build and Push + uses: docker/build-push-action@v4 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: ${{ GitHub.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}