Skip to content

Re-run for changes to the workflow #4

Re-run for changes to the workflow

Re-run for changes to the workflow #4

Workflow file for this run

name: Docker Build
on:
push:
paths:
- ".github/workflows/dockerBuild.yml"
- "docker/*"
workflow_dispatch:
jobs:
dockerBuild:
runs-on: ubuntu-latest
permissions:
packages: write
strategy:
fail-fast: false
matrix:
platform:
- "arch"
env:
DockerRepository: ghcr.io/outpostuniverse
steps:
- uses: actions/checkout@v4
- run: make -C docker build-image-${{ matrix.platform }}
- run: make -C docker push-image-${{ matrix.platform }}