Skip to content

Store resource

Store resource #14

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
env:
IMAGE_REGISTRY: ghcr.io
IMAGE_REPOSITORY: minbzk/logboek-dataverwerkingen-logboek
jobs:
build-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
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 and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.ref_name == github.event.repository.default_branch }}
tags: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_REPOSITORY }}:latest