39 lines
943 B
YAML
39 lines
943 B
YAML
name: build games
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 1 * *"
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- games/**
|
|
jobs:
|
|
push:
|
|
name: "games:${{ matrix.game }}"
|
|
runs-on: self-hosted
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
game:
|
|
- source
|
|
- rust
|
|
- havana
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: docker/setup-buildx-action@v2
|
|
with:
|
|
buildkitd-flags: --debug
|
|
- uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GP_TOKEN }}
|
|
- uses: docker/build-push-action@v4
|
|
with:
|
|
context: ./games/${{ matrix.game }}
|
|
file: ./games/${{ matrix.game }}/Dockerfile
|
|
platforms: linux/amd64
|
|
push: true
|
|
tags: |
|
|
ghcr.io/thundernetworkrad/games:${{ matrix.game }}
|