Skip to content

Commit

Permalink
iosbuild ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
SanttuRantanen committed Sep 21, 2024
1 parent 5672571 commit 39e60ff
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ios_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,15 @@ jobs:
# apply provisioning profile
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles
security cms -D -i $PP_PATH -o $RUNNER_TEMP/Profile_Explainer_iOS_Dev-payload.plist
# Attempt to decode the provisioning profile
if ! security cms -D -i $PP_PATH -o $RUNNER_TEMP/Profile_Explainer_iOS_Dev-payload.plist; then
echo "Failed to decode provisioning profile. Attempting to print raw content:"
cat $PP_PATH
exit 1
fi
echo "Decoded provisioning profile content:"
cat $RUNNER_TEMP/Profile_Explainer_iOS_Dev-payload.plist
- name: Run iOS tests
run: ./iostest.sh

0 comments on commit 39e60ff

Please sign in to comment.