Skip to content

Commit bd6b80a

Browse files
committed
chore: temp skip signing
1 parent e1e2bde commit bd6b80a

File tree

2 files changed

+3
-28
lines changed

2 files changed

+3
-28
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -43,36 +43,11 @@ jobs:
4343
working-directory: apps/desktop
4444
run: pnpm download-node:all
4545

46-
- name: Import Apple certificates
47-
env:
48-
APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }}
49-
APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }}
50-
run: |
51-
# Create temporary keychain
52-
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
53-
KEYCHAIN_PASSWORD=actions
54-
55-
# Decode certificate
56-
echo "$APPLE_CERT_BASE64" | base64 --decode > certificate.p12
57-
58-
# Create keychain
59-
security create-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"
60-
security set-keychain-settings -lut 21600 "$KEYCHAIN_PATH"
61-
security unlock-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"
62-
63-
# Import certificate
64-
security import certificate.p12 -P "$APPLE_CERT_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH"
65-
security list-keychain -d user -s "$KEYCHAIN_PATH"
66-
67-
# Set key partition list
68-
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"
69-
70-
# Clean up
71-
rm certificate.p12
72-
7346
- name: Build artifacts
7447
working-directory: apps/desktop
7548
env:
49+
SKIP_CODESIGNING: true
50+
SKIP_NOTARIZATION: true
7651
APPLE_ID: ${{ secrets.APPLE_ID }}
7752
APPLE_APP_PASSWORD: ${{ secrets.APPLE_APP_PASSWORD }}
7853
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@amical/desktop",
3-
"version": "0.0.5",
3+
"version": "0.0.5-test-publish",
44
"description": "Amical Desktop app",
55
"main": ".vite/build/main.js",
66
"productName": "Amical",

0 commit comments

Comments
 (0)