Do not hardcode team-id
This commit is contained in:
parent
17bc7f2e61
commit
bc5f7b2cb9
1
.github/workflows/master.yml
vendored
1
.github/workflows/master.yml
vendored
@ -65,6 +65,7 @@ jobs:
|
||||
- run: ./Build/CI/applesign.sh
|
||||
env:
|
||||
APPLE_ID: ${{ secrets.APPLE_ID }}
|
||||
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
||||
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
||||
APPLE_DEV_ID_CERT: ${{ secrets.APPLE_DEV_ID_CERT }}
|
||||
APPLE_DEV_ID_CERT_PASSWORD: ${{ secrets.APPLE_DEV_ID_CERT_PASSWORD }}
|
||||
|
||||
@ -94,7 +94,7 @@ echo "DMG signed"
|
||||
|
||||
echo "Notarize $dmg_file with bundle id $bundle_id"
|
||||
|
||||
sudo xcrun notarytool submit --apple-id "$APPLE_ID" --password "$APPLE_ID_PASSWORD" --team-id "RA7UV6QS8W" --wait "$dmg_file"
|
||||
sudo xcrun notarytool submit --apple-id "$APPLE_ID" --password "$APPLE_ID_PASSWORD" --team-id "$APPLE_TEAM_ID" --wait "$dmg_file"
|
||||
|
||||
sudo xcrun stapler staple "$dmg_file"
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user