Try new build container toolchain
Some checks failed
Publish Builder Images / build-and-push (push) Failing after 1m32s
Some checks failed
Publish Builder Images / build-and-push (push) Failing after 1m32s
This commit is contained in:
@ -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
|
||||
Reference in New Issue
Block a user