yolks/.github/workflows/games.yml
Alex 8afb47574c
ci: enable workflow dispatch
Allows manually triggering workflows to rebuild images. Works with push and schedule.
2021-09-23 01:35:21 +03:00

39 lines
955 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
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 }}