Create and publish images #27
Workflow file for this run
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
# Based on: https://docs.github.com/en/actions/publishing-packages/publishing-docker-images#publishing-images-to-github-packages | |
# This gets run each time that a tag is pushed (new version). | |
name: Create and publish images | |
on: | |
push: | |
tags: haikudepotserver-* | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME_WEBAPP: haikudepotserver | |
IMAGE_NAME_SERVER_GRAPHICS: haikudepotserver-server-graphics | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# This will create the Dockerfile-s | |
- name: Make the Dockerfiles | |
run: make dockerfiles | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker (webapp) | |
id: meta_webapp | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_WEBAPP }} | |
tags: type=match,pattern=haikudepotserver-(\d+.\d+.\d+),group=1 | |
- name: Build and push Docker image (webapp) | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: Dockerfile_webapp | |
push: true | |
tags: ${{ steps.meta_webapp.outputs.tags }} | |
labels: ${{ steps.meta_webapp.outputs.labels }} | |
- name: Extract metadata (tags, labels) for Docker (server_graphics) | |
id: meta_server_graphics | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_SERVER_GRAPHICS }} | |
tags: type=match,pattern=haikudepotserver-(\d+.\d+.\d+),group=1 | |
- name: Build and push Docker image (server_graphics) | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: Dockerfile_server_graphics | |
push: true | |
tags: ${{ steps.meta_server_graphics.outputs.tags }} | |
labels: ${{ steps.meta_server_graphics.outputs.labels }} |