Try new build container toolchain
Some checks failed
Publish Builder Images / build-and-push (push) Failing after 1m32s

This commit is contained in:
2025-12-02 10:11:21 +01:00
parent 1b1355e782
commit 6a58136009
4 changed files with 100 additions and 22 deletions

View File

@ -1,6 +1,10 @@
name: Publish Builder Image
name: Publish Builder Images
on:
push:
paths:
- 'Dockerfile.base'
- 'Dockerfile.windows'
- 'build.sh'
jobs:
build-and-push:
@ -9,17 +13,21 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Build and Push
- name: Make script executable
run: chmod +x build.sh
# Optional: Restore DNF Cache (if you are using the cache strategy)
- name: Run Build Script
uses: docker://quay.io/buildah/stable
env:
USERNAME: ${{ gitea.actor }}
# Standard Gitea env vars
USERNAME: ${{ gitea.repository_owner }}
PASSWORD: ${{ secrets.USER_PACKAGE_PASSWORD }}
REGISTRY: gitea.212.63.210.91.nip.io
# Changed to repository_owner to avoid 'owner/repo/image' nesting
IMAGE: ${{ gitea.repository_owner }}/godot-builder
# We use the short SHA for the tag
TAG: ${{ gitea.sha }}
with:
entrypoint: /bin/sh
# We just tell it to run the script we checked out
args: ./build.sh
args: ./build.sh