Skip to content

Commit

Permalink
Try to make multi-arch build
Browse files Browse the repository at this point in the history
  • Loading branch information
allgood authored May 14, 2024
1 parent b6237fc commit 68b904e
Showing 1 changed file with 47 additions and 12 deletions.
59 changes: 47 additions & 12 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Create and publish multi-arch Docker images

on:
release:
types: [published]

push:
branches:
- 'main'
tags:
- 'v*.*.*'
env:
REGISTRY: ghcr.io
IMAGE_BACKEND: ticketz-oss/ticketz-backend
Expand All @@ -20,32 +22,65 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker meta Backend
id: meta_backend
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/ticktez-oss/backend
# Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Docker meta Frontend
id: meta_frontend
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/ticktez-oss/frontend
# Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Build and push backend Docker image
id: backend
uses: docker/build-push-action@v2
with:
context: ./backend
push: true
platforms: linux/amd64
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_BACKEND }}:latest
${{ env.REGISTRY }}/${{ env.IMAGE_BACKEND }}:${{ github.sha }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta_backend.outputs.tags }}
labels: ${{ steps.meta_backend.outputs.labels }}

- name: Build and push frontend Docker image
id: frontend
uses: docker/build-push-action@v2
with:
context: ./frontend
push: true
platforms: linux/amd64
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_FRONTEND }}:latest
${{ env.REGISTRY }}/${{ env.IMAGE_FRONTEND }}:${{ github.sha }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta_frontend.outputs.tags }}
labels: ${{ steps.meta_frontend.outputs.labels }}

0 comments on commit 68b904e

Please sign in to comment.