moved build scripts to their own folder

This commit is contained in:
Lachee 2025-05-16 17:22:19 +10:00
parent 5afc1f4632
commit 37566e9834
No known key found for this signature in database
GPG Key ID: F1694B0D3BCBCD55
4 changed files with 8 additions and 10 deletions

View File

@ -2,10 +2,9 @@ name: Create Images
on:
push:
branches:
- main
paths:
- 'versions.txt'
branches: [main]
paths: ['versions.txt']
workflow_dispatch:
inputs:
unity_version:
@ -62,7 +61,7 @@ jobs:
echo "Unity Version: $VERSION"
- name: Docker Build
run: ./scripts/build-image.sh
run: .gitea/workflows/scripts/build-image.sh
id: build-image
env:
UNITY_VERSION: ${{ env.UNITY_VERSION }}

View File

View File

View File

@ -5,12 +5,11 @@ on:
- cron: '0 0 * * *' # Run daily at midnight
workflow_dispatch: # Allow manual triggering
workflow_run: # Trigger from images
types:
- completed
types: [completed]
push:
paths:
- scripts/update-readme.py
- .gitea/workflows/update-readme.py
- .gitea/workflows/update-readme.yaml
- .gitea/workflows/scripts/update-readme.py
jobs:
update-readme:
@ -30,7 +29,7 @@ jobs:
pip install requests
- name: Generate Docker Images Table
run: python scripts/update-readme.py
run: python .gitea/workflows/scripts/update-readme.py
env:
DOCKER_REGISTRY: docker.lakes.house
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}