2021-05-15 21:29:47 +02:00
|
|
|
name: build installers
|
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:
|
|
|
|
- installers/**
|
2023-01-09 03:39:33 +01:00
|
|
|
|
|
|
|
# Two separate jobs, first for multiarch (amd64, arm64), second for amd64 only
|
|
|
|
|
2021-05-15 21:26:45 +02:00
|
|
|
jobs:
|
2023-01-09 03:39:33 +01:00
|
|
|
pushMultiArch:
|
|
|
|
name: "yolks:installers_multiarch:${{ matrix.tag }}"
|
2021-05-15 21:26:45 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
tag:
|
|
|
|
- alpine
|
2023-01-09 03:39:33 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: docker/setup-buildx-action@v2
|
|
|
|
with:
|
|
|
|
buildkitd-flags: --debug
|
|
|
|
- name: Setup QEMU for multiarch builds
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
with:
|
|
|
|
platforms: arm64,amd64
|
|
|
|
- uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
2023-07-12 04:47:58 +02:00
|
|
|
- uses: docker/build-push-action@v4
|
2023-01-09 03:39:33 +01:00
|
|
|
with:
|
|
|
|
context: ./installers
|
|
|
|
file: ./installers/${{ matrix.tag }}/Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
ghcr.io/pterodactyl/installers:${{ matrix.tag }}
|
|
|
|
|
|
|
|
pushAmd:
|
|
|
|
name: "yolks:installers_amd:${{ matrix.tag }}"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
tag:
|
2021-05-30 03:16:28 +02:00
|
|
|
- debian
|
2021-05-15 21:26:45 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: docker/setup-buildx-action@v2
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
2023-01-09 03:39:33 +01:00
|
|
|
version: "v0.7.0"
|
2021-05-15 21:26:45 +02:00
|
|
|
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 }}
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
2023-07-12 04:47:58 +02:00
|
|
|
- uses: docker/build-push-action@v4
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
|
|
|
context: ./installers
|
|
|
|
file: ./installers/${{ matrix.tag }}/Dockerfile
|
2023-01-09 03:39:33 +01:00
|
|
|
platforms: linux/amd64
|
2021-05-15 21:26:45 +02:00
|
|
|
push: true
|
|
|
|
tags: |
|
2021-05-15 21:29:47 +02:00
|
|
|
ghcr.io/pterodactyl/installers:${{ matrix.tag }}
|