yolks/.github/workflows/base.yml

41 lines
1,006 B
YAML
Raw Normal View History

2021-06-22 01:27:00 +02:00
name: build oses
2021-06-05 22:47:35 +02:00
on:
workflow_dispatch:
2021-06-05 22:47:35 +02:00
schedule:
- cron: "0 0 1 * *"
2021-06-05 22:47:35 +02:00
push:
branches:
- master
paths:
2021-06-22 01:27:00 +02:00
- oses/**
2021-06-05 22:47:35 +02:00
jobs:
push:
2021-06-22 01:27:00 +02:00
name: "yolks:${{ matrix.oses }}"
2021-06-05 22:47:35 +02:00
runs-on: ubuntu-latest
strategy:
fail-fast: false
2021-06-22 01:27:00 +02:00
matrix:
oses:
- alpine
- debian
2021-06-05 22:47:35 +02:00
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
2021-06-05 22:47:35 +02:00
with:
version: "v0.9.1"
2021-06-05 22:47:35 +02:00
buildkitd-flags: --debug
- uses: docker/login-action@v2
2021-06-05 22:47:35 +02:00
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
- uses: docker/build-push-action@v3
2021-06-05 22:47:35 +02:00
with:
2021-06-22 01:27:00 +02:00
context: ./oses/${{ matrix.oses }}
file: ./oses/${{ matrix.oses }}/Dockerfile
platforms: linux/amd64,linux/arm64
2021-06-05 22:47:35 +02:00
push: true
tags: |
2021-06-22 01:27:00 +02:00
ghcr.io/pterodactyl/yolks:${{ matrix.oses }}