From bb6cd372828d9a6ca6188d1b1b37f8e515b70d59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E9=B1=BC=E5=BC=80=E5=8F=91?= Date: Wed, 20 May 2026 00:49:50 +0800 Subject: [PATCH] fix: disable updater signing for new repo build --- .github/workflows/release.yml | 4 ---- tauri-app/src-tauri/tauri.conf.json | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e5ab1a..abf94c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -95,8 +95,6 @@ jobs: run: npm run tauri -- build --target universal-apple-darwin env: VITE_API_BASE_URL: https://dev.tapi.meijiaka.cn/api/v1 - TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} - TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} - name: Upload artifacts uses: actions/upload-artifact@v4 @@ -170,8 +168,6 @@ jobs: run: npm run tauri -- build --target x86_64-pc-windows-msvc env: VITE_API_BASE_URL: https://dev.tapi.meijiaka.cn/api/v1 - TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} - TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} - name: Upload artifacts uses: actions/upload-artifact@v4 diff --git a/tauri-app/src-tauri/tauri.conf.json b/tauri-app/src-tauri/tauri.conf.json index 161110d..90c6faf 100644 --- a/tauri-app/src-tauri/tauri.conf.json +++ b/tauri-app/src-tauri/tauri.conf.json @@ -49,7 +49,7 @@ }, "bundle": { "active": true, - "createUpdaterArtifacts": true, + "createUpdaterArtifacts": false, "targets": [ "nsis", "dmg",