2021-05-15 21:29:47 +02:00
|
|
|
name: build java
|
2021-05-15 20:53:37 +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 20:53:37 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
2021-05-15 21:29:47 +02:00
|
|
|
- java/**
|
2021-05-15 20:53:37 +02:00
|
|
|
jobs:
|
|
|
|
push:
|
2021-05-15 21:26:45 +02:00
|
|
|
name: "yolks:java_${{ matrix.tag }}"
|
2021-05-15 20:53:37 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
tag:
|
|
|
|
- 8
|
2022-01-15 17:47:58 +01:00
|
|
|
- 8j9
|
2021-05-15 20:53:37 +02:00
|
|
|
- 11
|
2022-01-15 17:47:58 +01:00
|
|
|
- 11j9
|
2021-05-15 20:53:37 +02:00
|
|
|
- 16
|
2021-09-26 23:33:36 +02:00
|
|
|
- 17
|
2022-01-15 17:47:58 +01:00
|
|
|
- 17j9
|
2022-06-10 16:06:41 +02:00
|
|
|
- 18
|
|
|
|
- 18j9
|
2021-05-15 20:53:37 +02:00
|
|
|
steps:
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: docker/setup-qemu-action@v2
|
|
|
|
- uses: docker/setup-buildx-action@v2
|
2021-05-15 20:53:37 +02:00
|
|
|
with:
|
2023-01-09 03:39:33 +01:00
|
|
|
version: "v0.9.1"
|
2021-05-15 20:53:37 +02:00
|
|
|
buildkitd-flags: --debug
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: docker/login-action@v2
|
2021-05-15 20:53:37 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: docker/build-push-action@v3
|
2021-05-15 20:53:37 +02:00
|
|
|
with:
|
|
|
|
context: ./java
|
|
|
|
file: ./java/${{ matrix.tag }}/Dockerfile
|
2021-07-04 23:59:34 +02:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-05-15 20:53:37 +02:00
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
ghcr.io/pterodactyl/yolks:java_${{ matrix.tag }}
|