Skip to content

Commit

Permalink
workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBarker committed Jan 26, 2025
1 parent aa83f29 commit ab93c53
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,19 @@ jobs:
if: startsWith(matrix.os, 'macos')
run: |
mkdir -p ~/private_keys/
echo '${{ secrets.APPLE_API_KEY }}' > ~/private_keys/AuthKey_${{ secrets.APPLE_API_KEY_ID }}.p8
echo "${{ secrets.APPLE_API_KEY }}" > ~/private_keys/AuthKey_${{ secrets.APPLE_API_KEY_ID }}.p8
chmod 600 ~/private_keys/AuthKey_${{ secrets.APPLE_API_KEY_ID }}.p8
- name: Check .p8 file and folder contents
if: startsWith(matrix.os, 'macos') && env.is_tag == 'true'
run: |
echo "Contents of ~/private_keys:"
ls -la ~/private_keys/
- name: (MacOS) Upload to Mac App Store
if: startsWith(matrix.os, 'macos') && env.is_tag == 'true'
run: |
npx tsx script/xcrun-wrapper.mts $PKG_FILE ${{ secrets.APPLE_API_KEY_ID }} ${{ secrets.APPLE_API_ISSUER }} 1552674375 com.martinbarker.digifyunique
- name: (MacOS) Download ffmpeg
if: startsWith(matrix.os, 'macos')
Expand Down

0 comments on commit ab93c53

Please sign in to comment.