ce613111f7
/ publish (push) Successful in 2s
Workflow logic now lives in novoyuuparosk-auto-wiki/publish-songs.yml (reusable, workflow_call). Gains incremental publishing: only changed song files are republished instead of --all on every push.
20 lines
500 B
YAML
20 lines
500 B
YAML
on:
|
|
push:
|
|
branches: [master]
|
|
paths-ignore:
|
|
- "wip/**"
|
|
- "README.md"
|
|
- ".gitignore"
|
|
- ".claude/**"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
uses: mikkeli/novoyuuparosk-auto-wiki/.gitea/workflows/publish-songs.yml@master
|
|
with:
|
|
SOURCE_REF: ${{ github.sha }}
|
|
# Empty on workflow_dispatch — the reusable workflow treats that as
|
|
# "publish everything", same as a first push.
|
|
SOURCE_BASE_REF: ${{ github.event.before }}
|
|
secrets: inherit
|