Skip to content

Commit cc899da

Browse files
committed
fix: explicitly disable macOS signing in tauri.conf.json
1 parent e61486a commit cc899da

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,11 @@ jobs:
8181
- uses: tauri-apps/tauri-action@v0
8282
env:
8383
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
84-
# Only set signing env vars if secrets exist, otherwise Tauri will try to sign with empty identity
85-
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
86-
APPLE_ID: ${{ secrets.APPLE_ID }}
87-
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
88-
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
8984
with:
9085
projectPath: ./src-tauri
9186
tagName: ${{ github.ref_name }}
9287
releaseName: 'alt-sendme v__VERSION__'
88+
args: ${{ matrix.args }}
9389
releaseBody: |
9490
See the assets below to download and install this version.
9591

src-tauri/tauri.conf.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@
6464
"icons/128x128@2x.png",
6565
"icons/icon.icns",
6666
"icons/icon.ico"
67-
]
67+
],
68+
"macOS": {
69+
"signingIdentity": null
70+
}
6871
}
6972
}

0 commit comments

Comments
 (0)