Skip to content

Build Docker Images #271

Build Docker Images

Build Docker Images #271

Workflow file for this run

name: Build Docker Images
on:
pull_request:
push:
branches:
- main
- release/*
tags: '*'
release:
types:
- created
workflow_run:
workflows: ["Go Test"]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: ./HadesAPI/Dockerfile
image: ghcr.io/ls1intum/hades/hades-api
- dockerfile: ./HadesScheduler/Dockerfile
image: ghcr.io/ls1intum/hades/hades-scheduler
- dockerfile: ./HadesCloneContainer/Dockerfile
image: ghcr.io/ls1intum/hades/hades-clone-container
steps:
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ matrix.image }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=pr
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Install Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker Image
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}