.gitea/workflows/godot.yml hinzugefügt
This commit is contained in:
parent
5eb11bb6b0
commit
b3fe7a289a
1 changed files with 36 additions and 0 deletions
36
.gitea/workflows/godot.yml
Normal file
36
.gitea/workflows/godot.yml
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: Build Runner Godot
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
jobs:
|
||||
build_godot:
|
||||
runs-on: 'priviliged'
|
||||
strategy:
|
||||
matrix:
|
||||
version: [latest]
|
||||
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 Godot image
|
||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||
with:
|
||||
context: "{{defaultContext}}:images/actions/godot"
|
||||
push: true
|
||||
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
||||
tags: |
|
||||
git.euph.dev/actions/runner-godot-${{ matrix.version }}:latest
|
||||
git.euph.dev/actions/runner-godot-${{ matrix.version }}:${{ gitea.run_number }}
|
Loading…
Reference in a new issue