Prod 1.7.13 #832
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: Build iOS Staging | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
name: Build iOS | |
runs-on: macos-14 | |
timeout-minutes: 180 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
run_install: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'pnpm' | |
# Install dependencies using pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build SolidJS app | |
env: | |
VITE_NETWORK: signet | |
VITE_PROXY: wss://p.mutinywallet.com | |
VITE_ESPLORA: https://mutinynet.com/api | |
VITE_LSP: https://mutinynet-flow.lnolymp.us | |
VITE_RGS: https://rgs.mutinynet.com/snapshot/ | |
VITE_AUTH: https://auth-staging.mutinywallet.com | |
VITE_SUBSCRIPTIONS: https://subscriptions-staging.mutinywallet.com | |
VITE_STORAGE: https://storage-staging.mutinywallet.com/v2 | |
VITE_FEEDBACK: https://feedback-staging.mutinywallet.com | |
VITE_SCORER: https://scorer-staging.mutinywallet.com | |
VITE_PRIMAL: https://primal-cache.mutinywallet.com/api | |
VITE_BLIND_AUTH: https://blind-auth-staging.mutinywallet.com | |
VITE_HERMES: https://signet.mutiny.plus | |
run: pnpm build | |
- uses: actions/cache@v3 | |
with: | |
path: ios/App/Pods | |
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pods- | |
- name: Capacitor sync | |
run: npx cap sync | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' | |
bundler-cache: true | |
working-directory: 'ios/App' | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.2' | |
- uses: maierj/[email protected] | |
env: | |
DEVELOPER_APP_IDENTIFIER: ${{ secrets.DEVELOPER_APP_IDENTIFIER }} | |
# PROVISIONING_PROFILE_SPECIFIER: match AppStore ${{ secrets.DEVELOPER_APP_IDENTIFIER }} | |
KEYCHAIN_NAME: ${{ secrets.KEYCHAIN_NAME }} | |
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} | |
APPLE_ISSUER_ID: ${{ secrets.APPLE_ISSUER_ID }} | |
APPLE_KEY_ID: ${{ secrets.APPLE_KEY_ID }} | |
APPLE_KEY_CONTENT: ${{ secrets.APPLE_KEY_CONTENT }} | |
CERTIFICATE_STORE_URL: ${{ secrets.CERTIFICATE_STORE_URL }} | |
GIT_USERNAME: ${{ secrets.GIT_USERNAME }} | |
GIT_TOKEN: ${{ secrets.GIT_TOKEN }} | |
FASTLANE_APPLE_ID: ${{ secrets.FASTLANE_APPLE_ID }} | |
MATCH_USERNAME: ${{ secrets.FASTLANE_APPLE_ID }} | |
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
APP_STORE_CONNECT_TEAM_ID: ${{ secrets.APP_STORE_CONNECT_TEAM_ID }} | |
DEVELOPER_PORTAL_TEAM_ID: ${{ secrets.DEVELOPER_PORTAL_TEAM_ID }} | |
with: | |
lane: 'build' | |
subdirectory: 'ios/App' | |