2021-05-15 21:29:47 +02:00
|
|
|
name: build games
|
2021-05-15 21:26:45 +02:00
|
|
|
on:
|
2021-09-23 00:35:21 +02:00
|
|
|
workflow_dispatch:
|
2021-05-15 21:29:47 +02:00
|
|
|
schedule:
|
2022-06-28 03:23:18 +02:00
|
|
|
- cron: "0 0 1 * *"
|
2021-05-15 21:26:45 +02:00
|
|
|
push:
|
|
|
|
branches:
|
2021-05-15 21:29:47 +02:00
|
|
|
- master
|
2021-05-15 21:26:45 +02:00
|
|
|
paths:
|
2021-05-15 21:29:47 +02:00
|
|
|
- games/**
|
2021-05-15 21:26:45 +02:00
|
|
|
jobs:
|
|
|
|
push:
|
2021-05-15 21:29:47 +02:00
|
|
|
name: "games:${{ matrix.game }}"
|
2024-08-08 02:08:24 +02:00
|
|
|
runs-on: self-hosted
|
2021-05-15 21:26:45 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
game:
|
|
|
|
- source
|
2021-09-28 16:08:27 +02:00
|
|
|
- rust
|
2021-05-15 21:26:45 +02:00
|
|
|
steps:
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: docker/setup-buildx-action@v2
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
|
|
|
buildkitd-flags: --debug
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: docker/login-action@v2
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
2024-07-15 19:01:47 +02:00
|
|
|
password: ${{ secrets.GP_TOKEN }}
|
2023-07-12 04:47:58 +02:00
|
|
|
- uses: docker/build-push-action@v4
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
2021-05-15 21:29:47 +02:00
|
|
|
context: ./games/${{ matrix.game }}
|
2021-05-15 21:26:45 +02:00
|
|
|
file: ./games/${{ matrix.game }}/Dockerfile
|
|
|
|
platforms: linux/amd64
|
|
|
|
push: true
|
|
|
|
tags: |
|
2021-05-15 21:29:47 +02:00
|
|
|
ghcr.io/pterodactyl/games:${{ matrix.game }}
|