Do not hardcode team-id

This commit is contained in:
nicolas.dorier 2023-12-05 23:59:47 +09:00
parent 17bc7f2e61
commit bc5f7b2cb9
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE
2 changed files with 2 additions and 1 deletions

View File

@ -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 }}

View File

@ -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"