.gitea/workflows/action.yml aktualisiert

This commit is contained in:
Snoweuph 2024-05-09 10:11:25 +00:00
parent 66ccbbf2e8
commit 593b6615fa

View file

@ -6,7 +6,7 @@ on:
- 'master' - 'master'
jobs: jobs:
build_act: build_act_base:
runs-on: 'priviliged' runs-on: 'priviliged'
steps: steps:
- name: Install Docker - name: Install Docker
@ -31,96 +31,41 @@ jobs:
tags: | tags: |
git.euph.dev/actions/runner-basic:latest git.euph.dev/actions/runner-basic:latest
git.euph.dev/actions/runner-basic:${{ gitea.run_number }} git.euph.dev/actions/runner-basic:${{ gitea.run_number }}
build_php: build_act_images:
runs-on: 'priviliged' runs-on: 'priviliged'
needs: build_act needs: build_act
strategy: strategy:
matrix: matrix:
version: [8.1, 8.2, 8.3] language: [java, php, lua]
steps: include:
- name: Install Docker - version: [8, 17, 21]
run: | language: java
rm $(which docker) && curl -fsSL https://get.docker.com | sh - version: [8.1, 8.2, 8.3]
- name: Set up QEMU language: php
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3' - version: [5.1, 5.2, 5.3, 5.4]
- name: Setup Buildx language: lua
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3' steps:
- name: Login to Registry - name: Install Docker
uses: 'https://git.euph.dev/actions/docker-login@v3' run: |
with: rm $(which docker) && curl -fsSL https://get.docker.com | sh
registry: git.euph.dev - name: Set up QEMU
username: ${{ secrets.DEPLOY_USER }} uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
password: ${{ secrets.DEPLOY_SECRET }} - name: Setup Buildx
- name: Build and push php image uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
id: build_act_php - name: Login to Registry
uses: 'https://git.euph.dev/actions/docker-build-push@v5' uses: 'https://git.euph.dev/actions/docker-login@v3'
with: with:
context: "{{defaultContext}}:images/actions/php" registry: git.euph.dev
push: true username: ${{ secrets.DEPLOY_USER }}
build-args: PACKAGE_VERSION=${{ matrix.version }} password: ${{ secrets.DEPLOY_SECRET }}
tags: | - name: Build and push ${{ matrix.language }} image
git.euph.dev/actions/runner-php-${{ matrix.version }}:latest id: build_act_${{ matrix.language }}
git.euph.dev/actions/runner-php-${{ matrix.version }}:${{ gitea.run_number }} uses: 'https://git.euph.dev/actions/docker-build-push@v5'
with:
build_java: context: "{{defaultContext}}:images/actions/${{ matrix.language }}"
runs-on: 'priviliged' push: true
needs: build_act build-args: PACKAGE_VERSION=${{ matrix.version }}
strategy: tags: |
matrix: git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:latest
version: [8, 17, 21] git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:${{ gitea.run_number }}
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 }}
build_lua:
runs-on: 'priviliged'
needs: build_act
strategy:
matrix:
version: [5.1, 5.2, 5.3, 5.4]
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 Lua image
id: build_act_lua
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
with:
context: "{{defaultContext}}:images/actions/lua"
push: true
build-args: PACKAGE_VERSION=${{ matrix.version }}
tags: |
git.euph.dev/actions/runner-lua-${{ matrix.version }}:latest
git.euph.dev/actions/runner-lua-${{ matrix.version }}:${{ gitea.run_number }}