Skip to content

Commit

Permalink
Bump reader sdk version to fetch for ios build and update xcodebuild …
Browse files Browse the repository at this point in the history
…command to not using code signing
  • Loading branch information
brandonjenniges committed Sep 9, 2024
1 parent 0066174 commit 69fd131
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@ jobs:
with:
channel: 'stable' # or: 'beta', 'dev' or 'master'
- run: flutter pub get
# Android
- run: |
cd example
flutter pub get
cd android
./gradlew clean build -PSQUARE_READER_SDK_APPLICATION_ID=${{secrets.SQUARE_READER_SDK_APPLICATION_ID}} -PSQUARE_READER_SDK_REPOSITORY_PASSWORD=${{secrets.SQUARE_READER_SDK_REPOSITORY_PASSWORD}}
# #IOS

# iOS
- run: |
cd example
flutter pub get
Expand All @@ -30,7 +25,12 @@ jobs:
flutter pub get
pod update Firebase/CoreOnly
pod install --repo-update
xcodebuild -workspace Runner.xcworkspace -configuration Debug -scheme Runner -destination "platform=iOS Simulator,OS=16.2,name=iPhone 14
CODE_SIGNING_ALLOWED=NO /
CODE_SIGNING_REQUIRED=NO /
CODE_SIGN_IDENTITY=NO"
xcodebuild -workspace Runner.xcworkspace -configuration Debug -scheme Runner -sdk iphoneos SKIP_SETUP_SCRIPT=YES CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
# Android
- run: |
cd example
flutter pub get
cd android
./gradlew clean build -PSQUARE_READER_SDK_APPLICATION_ID=${{secrets.SQUARE_READER_SDK_APPLICATION_ID}} -PSQUARE_READER_SDK_REPOSITORY_PASSWORD=${{secrets.SQUARE_READER_SDK_REPOSITORY_PASSWORD}}

0 comments on commit 69fd131

Please sign in to comment.