We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1463c84 commit 23f6e98Copy full SHA for 23f6e98
1 file changed
.github/workflows/release.yml
@@ -42,8 +42,12 @@ jobs:
42
run: |
43
echo "${{ secrets.APPLE_APPSTORE_P12 }}" | base64 -d > /tmp/macos_appstore.p12
44
echo "${{ secrets.APPLE_INSTALLER_P12 }}" | base64 -d > /tmp/macos_installer.p12
45
- echo "${{ secrets.APPLE_DEVID_P12_PART1 }}${{ secrets.APPLE_DEVID_P12_PART2 }}" | base64 -d > /tmp/macos_devid.p12
+ printf '%s' "$DEVID_PART1" "$DEVID_PART2" | base64 -d > /tmp/macos_devid.p12
46
+ echo "DevID p12 size: $(wc -c < /tmp/macos_devid.p12) bytes (expected ~43839)"
47
echo "${{ secrets.APPLE_P8_KEY }}" | base64 -d > /tmp/appstore_connect.p8
48
+ env:
49
+ DEVID_PART1: ${{ secrets.APPLE_DEVID_P12_PART1 }}
50
+ DEVID_PART2: ${{ secrets.APPLE_DEVID_P12_PART2 }}
51
52
- name: Inject credential paths into perry.toml
53
0 commit comments