.gitea/workflows/java.yml hinzugefügt
Some checks failed
Build Runner Base / build_act (push) Has been cancelled
Some checks failed
Build Runner Base / build_act (push) Has been cancelled
This commit is contained in:
parent
152cad0b58
commit
fe3f12f205
1 changed files with 38 additions and 0 deletions
38
.gitea/workflows/java.yml
Normal file
38
.gitea/workflows/java.yml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: Build Runner Java
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["Build Runner Base"]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
|
||||||
|
build_java:
|
||||||
|
runs-on: 'priviliged'
|
||||||
|
needs: build_act
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
version: [8, 17, 21]
|
||||||
|
steps:
|
||||||
|
- name: Install Docker
|
||||||
|
run: |
|
||||||
|
rm $(which docker) && curl -fsSL https://get.docker.com | sh
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
||||||
|
- name: Setup Buildx
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
|
||||||
|
- name: Login to Registry
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-login@v3'
|
||||||
|
with:
|
||||||
|
registry: git.euph.dev
|
||||||
|
username: ${{ secrets.DEPLOY_USER }}
|
||||||
|
password: ${{ secrets.DEPLOY_SECRET }}
|
||||||
|
- name: Build and push java image
|
||||||
|
id: build_act_java
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||||
|
with:
|
||||||
|
context: "{{defaultContext}}:images/actions/java"
|
||||||
|
push: true
|
||||||
|
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
||||||
|
tags: |
|
||||||
|
git.euph.dev/actions/runner-java-${{ matrix.version }}:latest
|
||||||
|
git.euph.dev/actions/runner-java-${{ matrix.version }}:${{ gitea.run_number }}
|
Loading…
Reference in a new issue