yolks/.github/workflows/games.yml
Alex d0c0e3e6f3
add Rust game Debian image
Update to bullseye image, node v14, and includes libsdl2 to fix steamcmd SDL issues
2021-09-28 17:08:27 +03:00

40 lines
972 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: ubuntu-latest
strategy:
fail-fast: false
matrix:
game:
- fivem
- source
- rust
steps:
- uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v1
with:
version: "v0.5.1"
buildkitd-flags: --debug
- uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
- uses: docker/build-push-action@v2
with:
context: ./games/${{ matrix.game }}
file: ./games/${{ matrix.game }}/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/pterodactyl/games:${{ matrix.game }}