.gitea/workflows/action.yml aktualisiert
This commit is contained in:
parent
25a2beaccd
commit
6553971331
1 changed files with 38 additions and 38 deletions
|
@ -10,7 +10,7 @@ jobs:
|
|||
runs-on: 'priviliged'
|
||||
steps:
|
||||
- name: Install Docker
|
||||
run: "rm $(which docker) && curl -fsSL https://get.docker.com | sh"
|
||||
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
|
||||
|
@ -25,45 +25,45 @@ jobs:
|
|||
id: build_act_base
|
||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||
with:
|
||||
context: "{{defaultContext}}:images/actions/act"
|
||||
context: '{{defaultContext}}:images/actions/act'
|
||||
push: true
|
||||
tags: |
|
||||
git.euph.dev/actions/runner-basic:latest
|
||||
git.euph.dev/actions/runner-basic:${{ gitea.run_number }}
|
||||
|
||||
build_act_images:
|
||||
runs-on: 'priviliged'
|
||||
needs: build_act
|
||||
strategy:
|
||||
matrix:
|
||||
language: [java, php, lua]
|
||||
include:
|
||||
- version: [8, 17, 21]
|
||||
language: java
|
||||
- version: [8.1, 8.2, 8.3]
|
||||
language: php
|
||||
- version: [5.1, 5.2, 5.3, 5.4]
|
||||
language: lua
|
||||
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 ${{ matrix.language }} image
|
||||
id: build_act_${{ matrix.language }}
|
||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||
with:
|
||||
context: "{{defaultContext}}:images/actions/${{ matrix.language }}"
|
||||
push: true
|
||||
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
||||
tags: |
|
||||
git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:latest
|
||||
git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:${{ gitea.run_number }}
|
||||
build_act_images:
|
||||
runs-on: 'priviliged'
|
||||
needs: build_act
|
||||
strategy:
|
||||
matrix:
|
||||
language: [java, php, lua]
|
||||
include:
|
||||
- version: [8, 17, 21]
|
||||
language: java
|
||||
- version: [8.1, 8.2, 8.3]
|
||||
language: php
|
||||
- version: [5.1, 5.2, 5.3, 5.4]
|
||||
language: lua
|
||||
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 ${{ matrix.language }} image
|
||||
id: build_act_${{ matrix.language }}
|
||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||
with:
|
||||
context: '{{defaultContext}}:images/actions/${{ matrix.language }}'
|
||||
push: true
|
||||
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
||||
tags: |
|
||||
git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:latest
|
||||
git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:${{ gitea.run_number }}
|
||||
|
|
Loading…
Reference in a new issue