From 78f52a2c965d14ed7fdf403e97e3b2babf20e73e Mon Sep 17 00:00:00 2001 From: Charles Morgan Date: Sat, 5 Jun 2021 16:47:35 -0400 Subject: [PATCH] Create alpine.yml --- .github/workflows/alpine.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/alpine.yml diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml new file mode 100644 index 0000000..2e606c0 --- /dev/null +++ b/.github/workflows/alpine.yml @@ -0,0 +1,34 @@ +name: build alpine +on: + schedule: + - cron: "0 0 * * 1" + push: + branches: + - master + paths: + - alpine/** +jobs: + push: + name: "yolks:alpine" + runs-on: ubuntu-latest + strategy: + fail-fast: false + 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: ./alpine + file: ./alpine/Dockerfile + platforms: linux/amd64 + push: true + tags: | + ghcr.io/pterodactyl/yolks:alpine