refactor(songs): rename render.py to publish.py

render.py was a misleading name — the script validates, renders,
and writes to MediaWiki (and will soon upload LRC files too).
publish.py better describes the full scope of the entry point.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-09 22:38:29 +09:00
parent afc6a62791
commit 33f47435ee
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -74,7 +74,7 @@ jobs:
run: | run: |
MODE="${{ steps.diff.outputs.mode }}" MODE="${{ steps.diff.outputs.mode }}"
if [ "$MODE" = "all" ] || [ "${{ inputs.FULL_PUBLISH }}" = "true" ]; then if [ "$MODE" = "all" ] || [ "${{ inputs.FULL_PUBLISH }}" = "true" ]; then
python auto-wiki/pipelines/songs/render.py \ python auto-wiki/pipelines/songs/publish.py \
--source-dir ncmr-songs \ --source-dir ncmr-songs \
--all --all
else else
@@ -84,7 +84,7 @@ jobs:
exit 0 exit 0
fi fi
# shellcheck disable=SC2086 # shellcheck disable=SC2086
python auto-wiki/pipelines/songs/render.py \ python auto-wiki/pipelines/songs/publish.py \
--source-dir ncmr-songs \ --source-dir ncmr-songs \
--files $FILES --files $FILES
fi fi