From 2d25d398bd544a014a9c774ff50115c589b286c5 Mon Sep 17 00:00:00 2001 From: cxfksword <718792+cxfksword@users.noreply.github.com> Date: Sat, 25 Nov 2023 22:45:24 +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 0bc1380..37fd0ef 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.MetaShark/bin/Release/net6.0/Jellyfin.Plugin.MetaShark.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