runner-images/.forgejo/workflows/godot.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

name: Build Runner Godot
on:
schedule:
- cron: '0 2 * * *'
push:
branches:
- 'master'
2025-01-29 14:12:42 +01:00
jobs:
build_godot:
2025-01-29 15:12:30 +01:00
runs-on: 'docker'
container:
image: docker:27.5.1-alpine3.21
strategy:
matrix:
version: [4.2.2]
steps:
- name: Install Docker
run: |
2025-01-29 14:12:42 +01:00
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
2025-01-29 14:12:42 +01:00
git.euph.dev/actions/runner-godot-${{ matrix.version }}:${{ forgejo.run_number }}