Skip to content

Commit

Permalink
check p8
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBarker committed Jan 26, 2025
1 parent bad1ef0 commit 1f5a8be
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,18 @@ jobs:
PKG_FILE=$(ls dist/mas-universal/*.pkg)
echo "PKG_FILE=$PKG_FILE" >> $GITHUB_ENV
# New step to check .p8 file existence and list folder contents
- name: Check .p8 file and folder contents
if: startsWith(matrix.os, 'macos') && env.is_tag == 'true'
run: |
if [ -f ~/private_keys/AuthKey_${{ secrets.APPLE_API_KEY_ID }}.p8 ]; then
echo ".p8 file exists"
else
echo ".p8 file is missing"
fi
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: |
Expand Down

0 comments on commit 1f5a8be

Please sign in to comment.