yolks/.github/workflows/games.yml
softwarenoob 290db30d1e
chore: remove reduntant FiveM specific image
Not used anywhere and is leftover from matthews upstream repo, from where it was also deleted. FiveM egg uses base debian image.
2021-11-21 20:12:21 +02:00

39 lines
954 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:
- 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 }}