Skip to content

fix: regenerate openUrl and health url on update (#38) #27

fix: regenerate openUrl and health url on update (#38)

fix: regenerate openUrl and health url on update (#38) #27

Workflow file for this run

name: Images
on:
push:
branches:
- "main"
paths:
- ".github/workflows/images.yml"
- "operator/**"
jobs:
build-mods:
strategy:
fail-fast: false
matrix:
include:
- context: operator
file: operator/Dockerfile
endpoint: demeter-run/workloads-operator
# - context: '.'
# file: Dockerfile
# endpoint: demeter-run/monolith
continue-on-error: true
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: ${{ matrix.context }}
file: ${{ matrix.file }}
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/${{ matrix.endpoint }},ghcr.io/${{ matrix.endpoint }}:${{ github.sha }}