From 72a4ad199977db7412d507e55e3ceda077bb35d1 Mon Sep 17 00:00:00 2001 From: Mikkeli Matlock Date: Wed, 10 Jun 2026 00:16:03 +0900 Subject: [PATCH] ci: use pre-built novoyuuparosk-wiki-runner image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drops apt-get and pip install steps — deps are baked into the locally-built shared runner image. See novoyuuparosk-auto-wiki README for rebuild instructions. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/publish.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index 01a92a9..5fdc95e 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -12,12 +12,9 @@ jobs: publish: runs-on: ubuntu-latest container: - image: python:3.12-slim + image: novoyuuparosk-wiki-runner:latest steps: - - name: Install system deps - run: apt-get update -qq && apt-get install -y --no-install-recommends git pandoc ca-certificates - - name: Checkout ncmr-songs env: FAPAT: ${{ secrets.FAPAT }} @@ -32,9 +29,6 @@ jobs: URL_TO_GITEA: ${{ vars.URL_TO_GITEA }} run: git clone "http://mikkeli:${FAPAT}@${URL_TO_GITEA#http://}/mikkeli/novoyuuparosk-auto-wiki" auto-wiki - - name: Install Python deps - run: pip install --no-cache-dir -r auto-wiki/pipelines/songs/requirements.txt - - name: Publish env: WIKI_API_URL: ${{ vars.WIKI_API_URL }}