Reorganize java and add build action for it

This commit is contained in:
Dane Everitt
2021-05-15 11:53:37 -07:00
parent 025c055c48
commit 72443f7789
21 changed files with 52 additions and 560 deletions

39
.github/workflows/java.yml vendored Normal file
View File

@@ -0,0 +1,39 @@
on:
push:
branches:
- master
paths:
- java/*
jobs:
push:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
tag:
- 7
- 8
- 9
- 11
- 14
- 16
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: ./java
file: ./java/${{ matrix.tag }}/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/pterodactyl/yolks:java_${{ matrix.tag }}