Skip to content

Commit

Permalink
Update build.yml to use reusable workflows (#106)
Browse files Browse the repository at this point in the history
* Update build.yml to use reusable workflows

* Update build.yml to fix naming error

* Update build.yml to restrict branches for PR builds

* Update build.yml to fix spacing

* Update build.yml to run things sequentially

* Update build.yml to fix duplicated builds

* Remove tags from push options
  • Loading branch information
robertjndw authored Jun 4, 2024
1 parent 626fa75 commit daa9b04
Showing 1 changed file with 7 additions and 47 deletions.
54 changes: 7 additions & 47 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,19 @@ name: Build Docker Images

on:
pull_request:
branches:
- main
- release/*
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:
Expand All @@ -29,43 +25,7 @@ jobs:
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 }}
uses: ls1intum/.github/.github/workflows/build-and-push-docker-image.yml@main
with:
image-name: ${{ matrix.image }}
docker-file: ${{ matrix.dockerfile }}

0 comments on commit daa9b04

Please sign in to comment.