Skip to content

Commit d3b9193

Browse files
committed
Fix unsigned macOS release packaging
1 parent 112be77 commit d3b9193

4 files changed

Lines changed: 6 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,6 @@ jobs:
101101
- name: Build packages
102102
run: ${{ matrix.script }}
103103
env:
104-
# electron-builder reads these automatically when present. Signing and
105-
# notarization are skipped when the repository secrets are not set.
106-
CSC_LINK: ${{ secrets.CSC_LINK }}
107-
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
108-
APPLE_ID: ${{ secrets.APPLE_ID }}
109-
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
110-
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
111104
CSC_IDENTITY_AUTO_DISCOVERY: false
112105
ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES: true
113106

docs/RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ Manual build:
5353
Tagged release:
5454

5555
```bash
56-
git tag v0.3.4
57-
git push origin v0.3.4
56+
git tag v0.3.5
57+
git push origin v0.3.5
5858
```
5959

6060
The tag build uploads artifacts and publishes them as GitHub Release assets.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rigscope",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"private": true,
55
"description": "Cross-platform local hardware inventory, diagnostics, benchmark, and stress-test dashboard.",
66
"main": "electron/main.js",
@@ -86,6 +86,7 @@
8686
"zip"
8787
],
8888
"artifactName": "RigScope-${version}-mac-${arch}.${ext}",
89+
"identity": null,
8990
"category": "public.app-category.utilities"
9091
}
9192
}

0 commit comments

Comments
 (0)