Skip to content

Commit

Permalink
Add workflow to build Docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
DanRStevens committed Aug 15, 2024
1 parent adafb14 commit 724554e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dockerBuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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 }}

0 comments on commit 724554e

Please sign in to comment.