Skip to content

Commit 61a1f58

Browse files
authored
CHANGE: apple_id_password with apple_app_specific_password (#2213)
* CHANGE: apple_id_password with apple_app_specific_password we'll need to do this: https://support.apple.com/en-us/102654 and include the password in our secrets with the key `apple_app_specific_password` this replaces `apple_id_password` used previously * Update electron.yaml * Update electron.yaml * Update electron.yaml
1 parent 6aaed4a commit 61a1f58

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/electron.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Sign with Software Trust Manager KSP
22

3-
on: push
3+
on:
4+
push:
5+
branches: [main]
6+
7+
workflow_dispatch:
48

59
jobs:
610
build:
@@ -79,10 +83,10 @@ jobs:
7983
args: ${{ env.BUILD_ARGS }}
8084
env:
8185
APPLE_ID: ${{ secrets.apple_id }}
82-
APPLE_ID_PASSWORD: ${{ secrets.apple_id_password }}
86+
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.apple_app_specific_password }}
8387
TEAM_SHORT_NAME: ${{ secrets.team_short_name }}
8488
APP_ID: "com.stereum.launcher"
85-
TEAM_ID: ${{ secrets.team_id }}
89+
APPLE_TEAM_ID: ${{ secrets.team_id }}
8690
KEYPAIR_ALIAS: ${{ secrets.KEYPAIR_ALIAS }}
8791
if: ${{ !contains(github.event.head_commit.message, '[NOCI]') }}
8892

0 commit comments

Comments
 (0)