Skip to content

Commit

Permalink
fix: issue with cicd yaml (#1743)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Leach <[email protected]>
  • Loading branch information
jleach authored Jan 25, 2024
1 parent b1f57f1 commit 2591bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
-scheme AriesBifold \
-allowProvisioningUpdates \
-configuration Release \
-xcconfig ../../release.xcconfig
-xcconfig ../../release.xcconfig \
-derivedDataPath xbuild \
-archivePath ../../AriesBifold.xcarchive \
-sdk iphoneos \
Expand Down
2 changes: 1 addition & 1 deletion scripts/makepp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ echo ">> Build Provisioning Profile... 🤞"
echo ">> Provisioning Profile Home = ${PP_DIR}"

UUID=$(/usr/libexec/plistbuddy -c Print:UUID /dev/stdin <<< `echo "${PROVISIONING_PROFILE}" | base64 -d | security cms -D`)
echo "${PROVISIONING_PROFILE}" | base64 -d >${UUID}.mobileprovision
base64 -d <<< "${PROVISIONING_PROFILE}" >${UUID}.mobileprovision
md5 "${UUID}.mobileprovision"
mkdir -p "${PP_DIR}"
cp ${UUID}.mobileprovision "${PP_DIR}/"
Expand Down

0 comments on commit 2591bda

Please sign in to comment.