Merge pull request #42 from plaidev/flutter #127
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] E2E Test Nativebrik SDK" | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
e2e: | |
runs-on: macos-13 | |
environment: | |
name: Only Main | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0' | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build Nativebrik E2E | |
run: xcodebuild -workspace ./ios/nativebrik.xcworkspace -scheme E2E -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.0.1' -derivedDataPath ./.dist | |
- name: Zip app | |
run: | | |
cd .dist/Build/Products/Release-iphonesimulator/ && zip -r E2E.app.zip ./E2E.app | |
- name: Uploade to magicpod | |
run: | | |
curl -L -X POST -F "[email protected]/Build/Products/Release-iphonesimulator/E2E.app.zip" -H "Authorization: Token ${{ secrets.MAGICPOD_API_TOKEN }}" "https://app.magicpod.com/api/v1.0/Nativebrik.inc/Nativebrik/upload-file/" |