From b699ff6bd353e235127309b47a9c4e0a59de2b21 Mon Sep 17 00:00:00 2001 From: DIDIRUS4 Date: Sun, 1 Sep 2024 14:46:45 +0300 Subject: [PATCH] Fix boot for all platforms --- .github/workflows/app-release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/app-release.yml b/.github/workflows/app-release.yml index dfff2656..be0796c1 100644 --- a/.github/workflows/app-release.yml +++ b/.github/workflows/app-release.yml @@ -102,7 +102,8 @@ jobs: run: pnpm install - name: build app (macos) - run: pnpm --filter=@modrinth/app run tauri build --target universal-apple-darwin --config "tauri-release.conf.json" + # tauri.conf.yml for normal build and boot. + run: pnpm --filter=@modrinth/app run tauri build --target universal-apple-darwin --config "tauri.conf.json" if: startsWith(matrix.platform, 'macos') env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -110,7 +111,8 @@ jobs: TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} - name: build app - run: pnpm --filter=@modrinth/app run tauri build --config "tauri-release.conf.json" + # tauri.conf.yml for normal build and boot. + run: pnpm --filter=@modrinth/app run tauri build --config "tauri.conf.json" id: build_os if: "!startsWith(matrix.platform, 'macos')" env: @@ -139,4 +141,3 @@ jobs: target/release/bundle/*/*.msi target/release/bundle/*/*.msi.zip target/release/bundle/*/*.msi.zip.sig -