From 6a8b6e7f934f75a47c954b4811cc6838747f1b7c Mon Sep 17 00:00:00 2001 From: Youwes09 Date: Fri, 20 Mar 2026 21:34:42 -0500 Subject: [PATCH] Fix: Inject Bundle Resources Via --config Flag --- .github/workflows/build-windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 8b5d167..c54a357 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -125,15 +125,15 @@ jobs: shell: bash run: | sed -i 's/"beforeBuildCommand": "pnpm build"/"beforeBuildCommand": ""/' src-tauri/tauri.conf.json - jq '.bundle.resources = ["binaries/suwayomi-bundle/**"]' src-tauri/tauri.conf.json > tmp.json - mv tmp.json src-tauri/tauri.conf.json - name: Build Tauri app (Windows x64) uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - args: --target x86_64-pc-windows-msvc + args: >- + --target x86_64-pc-windows-msvc + --config '{"bundle":{"resources":["binaries/suwayomi-bundle/**"]}}' - name: Upload Windows installer uses: actions/upload-artifact@v4