From 33f47435ee07a2e73db8ad10a28554ddb7bd4ff4 Mon Sep 17 00:00:00 2001 From: Mikkeli Matlock Date: Tue, 9 Jun 2026 22:38:29 +0900 Subject: [PATCH] refactor(songs): rename render.py to publish.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .gitea/workflows/publish-songs.yml | 4 ++-- pipelines/songs/{render.py => publish.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename pipelines/songs/{render.py => publish.py} (100%) diff --git a/.gitea/workflows/publish-songs.yml b/.gitea/workflows/publish-songs.yml index fb67131..b0f145c 100644 --- a/.gitea/workflows/publish-songs.yml +++ b/.gitea/workflows/publish-songs.yml @@ -74,7 +74,7 @@ jobs: run: | MODE="${{ steps.diff.outputs.mode }}" 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 \ --all else @@ -84,7 +84,7 @@ jobs: exit 0 fi # shellcheck disable=SC2086 - python auto-wiki/pipelines/songs/render.py \ + python auto-wiki/pipelines/songs/publish.py \ --source-dir ncmr-songs \ --files $FILES fi diff --git a/pipelines/songs/render.py b/pipelines/songs/publish.py similarity index 100% rename from pipelines/songs/render.py rename to pipelines/songs/publish.py