Add resource #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
workflow_dispatch: | |
env: | |
IMAGE_REGISTRY: ghcr.io | |
IMAGE_REPOSITORY: minbzk/logboek-dataverwerkingen-demo | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
app: | |
- munera | |
- currus | |
- lamina | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.IMAGE_REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build args | |
id: build_args | |
run: echo "commit_short_sha=$(git rev-parse --short HEAD)" >> ${GITHUB_OUTPUT} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./apps/${{ matrix.app }} | |
build-args: BUILD_COMMIT=${{ steps.build_args.outputs.commit_short_sha }} | |
push: ${{ github.ref_name == github.event.repository.default_branch }} | |
tags: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_REPOSITORY }}/${{ matrix.app }}:latest |