This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
Adjust the UI of the creator token profile. #1319
Workflow file for this run
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: Mobile Dev Action iOS | |
defaults: | |
run: | |
working-directory: apps/expo | |
on: | |
pull_request: | |
branches: ["staging"] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Expo prebuild | |
run: yarn E2E:build:ios | |
- name: Build with Xcode | |
run: | | |
DERIVED_DATA_PATH=/tmp/Showtime-$(uuidgen) | |
cd ios/ && E2E=true FLIPPER_DISABLE=1 STAGE=development xcrun xcodebuild -scheme Showtime \ | |
-workspace 'Showtime.xcworkspace' \ | |
-configuration Release \ | |
-sdk 'iphonesimulator' \ | |
ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO \ | |
-derivedDataPath "$DERIVED_DATA_PATH" \ | |
build | |
echo "APP_DIR_PATH=${DERIVED_DATA_PATH}/Build/Products/Release-iphonesimulator/Showtime.app" >>$GITHUB_ENV | |
- uses: mobile-dev-inc/action-maestro-cloud@v1 | |
with: | |
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }} | |
app-file: ${{ env.APP_DIR_PATH }} | |
env: | | |
PLATFORM=ios |