Release v2.1.3-build83 #1097
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#name: iOS | |
#on: | |
# push: | |
# branches: [main] | |
# pull_request: | |
# | |
# # Allows you to run this workflow manually from the Actions tab | |
# workflow_dispatch: | |
# | |
#jobs: | |
# build: | |
# runs-on: macos-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Use Node.js LTS | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 'lts/*' | |
# - run: npm i --legacy-peer-deps | |
# # for some reason, ios prebuild fails if we don't run prebuild:android first | |
# - run: npm run prebuild:android | |
# - run: npm run prebuild:ios | |
# - name: Build iOS (debug) | |
# run: "xcodebuild \ | |
# -workspace ios/LearnerCredentialWallet.xcworkspace \ | |
# -scheme LearnerCredentialWallet \ | |
# -sdk iphoneos \ | |
# -configuration Debug \ | |
# -destination generic/platform=iOS \ | |
# -UseModernBuildSystem=YES \ | |
# -archivePath $PWD/eduWallet \ | |
# clean archive \ | |
# CODE_SIGNING_ALLOWED=NO" |