Skip to content

Update base image for Arch Linux build #3

Update base image for Arch Linux build

Update base image for Arch Linux build #3

Workflow file for this run

name: Docker Build
on:
push:
paths:
- "docker/*"
workflow_dispatch:
jobs:
dockerBuild:
runs-on: ubuntu-latest
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 }}