Skip to content

Update build-docker.yml #10

Update build-docker.yml

Update build-docker.yml #10

Workflow file for this run

name: Create and publish multi-arch Docker images
on:
push:
branches:
- 'main'
- 'tests'
tags:
- 'v*.*.*'
env:
REGISTRY: ghcr.io
IMAGE_BACKEND: ticketz-oss/ticketz-backend
IMAGE_FRONTEND: ticketz-oss/ticketz-frontend
jobs:
build-and-push-images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
steps:
- 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@v3
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=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,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,linux/arm64
tags: ${{ steps.meta_frontend.outputs.tags }}
labels: ${{ steps.meta_frontend.outputs.labels }}