From bd32414ac25092dec475de07736ce13ece87ea81 Mon Sep 17 00:00:00 2001 From: cxfksword <718792+cxfksword@users.noreply.github.com> Date: Sat, 25 Nov 2023 22:48:11 +0800 Subject: [PATCH] build: update build script --- .github/workflows/publish.yaml | 2 +- generate_manifest.py => scripts/generate_manifest.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename generate_manifest.py => scripts/generate_manifest.py (100%) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index df294b1..3b4d177 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -46,7 +46,7 @@ jobs: zip -j ./artifacts/${{ env.artifact }}_${{steps.vars.outputs.VERSION}}.zip ./Jellyfin.Plugin.Danmu/bin/Release/net6.0/Jellyfin.Plugin.Danmu.dll cp ./doc/logo.png ./artifacts/logo.png - name: Generate manifest - run: cd artifacts && python3 ../generate_manifest.py ${{ env.artifact }}_${{steps.vars.outputs.VERSION}}.zip ${GITHUB_REF#refs/*/} + run: cd artifacts && python3 ../scripts/generate_manifest.py ${{ env.artifact }}_${{steps.vars.outputs.VERSION}}.zip ${GITHUB_REF#refs/*/} - name: Deploy to jellyfin release repo uses: peaceiris/actions-gh-pages@v3 with: diff --git a/generate_manifest.py b/scripts/generate_manifest.py similarity index 100% rename from generate_manifest.py rename to scripts/generate_manifest.py