Add Base Debian (#5)

This commit is contained in:
Charles Morgan
2021-06-21 19:27:00 -04:00
committed by GitHub
parent 130bee2129
commit 88180b3f5c
6 changed files with 82 additions and 6 deletions

38
.github/workflows/base.yml vendored Normal file
View File

@@ -0,0 +1,38 @@
name: build oses
on:
schedule:
- cron: "0 0 * * 1"
push:
branches:
- master
paths:
- oses/**
jobs:
push:
name: "yolks:${{ matrix.oses }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
oses:
- alpine
- debian
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: ./oses/${{ matrix.oses }}
file: ./oses/${{ matrix.oses }}/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/pterodactyl/yolks:${{ matrix.oses }}