68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
name: Docker
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
push:
|
|
name: Push
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
image:
|
|
- "alpine"
|
|
#- "alpine-install"
|
|
#- "java7"
|
|
#- "java8"
|
|
#- "java9"
|
|
#- "java10"
|
|
#- "java11"
|
|
#- "java12"
|
|
#- "java13"
|
|
#- "java14"
|
|
#- "java15"
|
|
#- "source"
|
|
#- "source-install"
|
|
|
|
steps:
|
|
- name: Code Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Install buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
with:
|
|
version: v0.5.1
|
|
buildkitd-flags: --debug
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.CR_PAT }}
|
|
|
|
- name: Login to Quay
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: quay.io
|
|
username: matthewp
|
|
password: ${{ secrets.QUAY_SECRET }}
|
|
|
|
- name: Build and Push
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: ./${{ matrix.image }}
|
|
file: ./${{ matrix.image }}/Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: |
|
|
ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}:latest
|
|
quay.io/matthewp/pterodactyl:${{ matrix.image }}
|