mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
33 lines
797 B
YAML
33 lines
797 B
YAML
name: Debug Build
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: [main, gh-pages]
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "*.md"
|
|
- "NewHorizons/Schemas/*.json"
|
|
- "LICENSE"
|
|
- ".gitignore"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
Build:
|
|
uses: './.github/workflows/build.yaml'
|
|
with:
|
|
build_type: Debug
|
|
Update_Schemas:
|
|
name: 'Update Schemas'
|
|
needs: Build
|
|
if: ${{ needs.Build.outputs.schemas_changed == 'true' }}
|
|
uses: './.github/workflows/update_schemas.yml'
|
|
with:
|
|
artifact_name: NewHorizons-Schemas-Debug
|
|
Update_Docs:
|
|
name: 'Update Docs'
|
|
needs: Build
|
|
if: ${{ needs.Build.outputs.schemas_changed == 'true' }}
|
|
uses: './.github/workflows/docs_build.yml'
|
|
with:
|
|
schemas_artifact: NewHorizons-Schemas-Debug
|