comment out Send discord message #428
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 fastlane release workflow | |
on: | |
push: | |
tags: | |
- mobile/v*.*.* | |
workflow_dispatch: | |
jobs: | |
release-android-mobile: | |
name: release-android-mobile | |
runs-on: macos-13 #orai-self-hosted | |
timeout-minutes: 120 # Set the timeout to 120 minutes | |
strategy: | |
matrix: | |
node-version: [20.17.0] | |
steps: | |
- name: Check tag name | |
if: contains(github.ref, 'cp') | |
run: | | |
exit 1 | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.8.0 | |
with: | |
access_token: ${{ github.token }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Increase Node.js memory limit to 7GB | |
run: | | |
export NODE_OPTIONS="--max-old-space-size=7168" | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Restore node_modules from cache | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Checkout submodule repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies # install project deps with --frozen-lockfile to make sure we will have the same packages version ( very recommended on running yarn install on ci) | |
run: yarn install --frozen-lockfile | |
- name: Install mobile packages | |
working-directory: apps/mobile | |
run: yarn --silent | |
- name: Build mobile images | |
working-directory: apps/mobile | |
run: yarn images | |
- name: restore lerna | |
uses: actions/cache@v3 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Build Libs | |
run: yarn build:libs | |
# - name: Build provider | |
# working-directory: apps/mobile | |
# run: yarn build:provider | |
- name: Bundle mobile | |
working-directory: apps/mobile | |
run: yarn build:ios | |
env: | |
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }} | |
API_KEY_ETH_SCAN: ${{ secrets.API_KEY_ETH_SCAN }} | |
API_KEY_BSC_SCAN: ${{ secrets.API_KEY_BSC_SCAN }} | |
API_KEY: ${{ secrets.API_KEY_FIREBASE }} | |
SENDER_ID: ${{ secrets.SENDER_ID_FIREBASE }} | |
APP_ID: ${{ secrets.APP_ID_FIREBASE }} | |
API_KEY_KADO: ${{ secrets.API_KEY_KADO }} | |
MIX_PANEL_TOKEN: ${{ secrets.MIX_PANEL_TOKEN }} | |
BYTE_BREW_SDK_KEY_IOS: ${{ secrets.BYTE_BREW_SDK_KEY_IOS }} | |
BYTE_BREW_ID_IOS: ${{ secrets.BYTE_BREW_ID_IOS }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
bundler-cache: true | |
- name: Pod install | |
working-directory: apps/mobile | |
run: yarn pod:install | |
- name: Setup Fastlane ios | |
working-directory: apps/mobile/ios/fastlane | |
run: cd .. && bundle update && fastlane release | |
env: | |
DISCORD_HOOK_ID: ${{ secrets.DISCORD_MOBILE_WEBHOOK_ID }} | |
DISCORD_HOOK_TOKEN: ${{ secrets.DISCORD_MOBILE_WEBHOOK_TOKEN }} | |
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }} | |
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }} | |
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }} | |
APP_STORE_CONNECT_API_KEY_DURATION: 1200 | |
APP_STORE_CONNECT_API_KEY_IN_HOUSE: false | |
APP_IDENTIFIER: io.orai.owallet | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
ITC_TEAM_ID: ${{ secrets.ITC_TEAM_ID }} | |
TEAM_ID: ${{ secrets.TEAM_ID }} | |
MATCH_GIT_URL: "https://github.com/oraichain/fastlane.git" | |
KEYCHAIN_PASSWORD: ${{ secrets.PASS_KEY_STORE }} | |
MATCH_PASSWORD: ${{ secrets.PASS_KEY_STORE }} | |
KEYCHAIN_NAME: "login" | |
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }} | |
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }} | |
FILE_PATH: "/OWalletKeystore" | |
release-ios-mobile: | |
name: release-ios-mobile | |
runs-on: macos-13 #orai-self-hosted | |
timeout-minutes: 120 # Set the timeout to 120 minutes | |
strategy: | |
matrix: | |
node-version: [20.17.0] | |
steps: | |
- name: Check tag name | |
if: contains(github.ref, 'cp') | |
run: | | |
exit 1 | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.8.0 | |
with: | |
access_token: ${{ github.token }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Increase Node.js memory limit to 7GB | |
run: | | |
export NODE_OPTIONS="--max-old-space-size=7168" | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Restore node_modules from cache | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Checkout submodule repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies # install project deps with --frozen-lockfile to make sure we will have the same packages version ( very recommended on running yarn install on ci) | |
run: yarn install --frozen-lockfile | |
- name: Install mobile packages | |
working-directory: apps/mobile | |
run: yarn --silent | |
- name: Build mobile images | |
working-directory: apps/mobile | |
run: yarn images | |
- name: restore lerna | |
uses: actions/cache@v3 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Build Libs | |
run: yarn build:libs | |
# - name: Build provider | |
# working-directory: apps/mobile | |
# run: yarn build:provider | |
- name: Bundle mobile | |
working-directory: apps/mobile | |
run: yarn build:ios | |
env: | |
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }} | |
API_KEY_ETH_SCAN: ${{ secrets.API_KEY_ETH_SCAN }} | |
API_KEY_BSC_SCAN: ${{ secrets.API_KEY_BSC_SCAN }} | |
API_KEY: ${{ secrets.API_KEY_FIREBASE }} | |
SENDER_ID: ${{ secrets.SENDER_ID_FIREBASE }} | |
APP_ID: ${{ secrets.APP_ID_FIREBASE }} | |
API_KEY_KADO: ${{ secrets.API_KEY_KADO }} | |
MIX_PANEL_TOKEN: ${{ secrets.MIX_PANEL_TOKEN }} | |
BYTE_BREW_SDK_KEY_IOS: ${{ secrets.BYTE_BREW_SDK_KEY_IOS }} | |
BYTE_BREW_ID_IOS: ${{ secrets.BYTE_BREW_ID_IOS }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
bundler-cache: true | |
- name: Pod install | |
working-directory: apps/mobile | |
run: yarn pod:install | |
- name: Setup Fastlane ios | |
working-directory: apps/mobile/ios/fastlane | |
run: cd .. && bundle update && fastlane release | |
env: | |
DISCORD_HOOK_ID: ${{ secrets.DISCORD_MOBILE_WEBHOOK_ID }} | |
DISCORD_HOOK_TOKEN: ${{ secrets.DISCORD_MOBILE_WEBHOOK_TOKEN }} | |
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }} | |
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }} | |
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }} | |
APP_STORE_CONNECT_API_KEY_DURATION: 1200 | |
APP_STORE_CONNECT_API_KEY_IN_HOUSE: false | |
APP_IDENTIFIER: io.orai.owallet | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
ITC_TEAM_ID: ${{ secrets.ITC_TEAM_ID }} | |
TEAM_ID: ${{ secrets.TEAM_ID }} | |
MATCH_GIT_URL: "https://github.com/oraichain/fastlane.git" | |
KEYCHAIN_PASSWORD: ${{ secrets.PASS_KEY_STORE }} | |
MATCH_PASSWORD: ${{ secrets.PASS_KEY_STORE }} | |
KEYCHAIN_NAME: "login" | |
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }} | |
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }} | |
MIX_PANEL_TOKEN: ${{ secrets.MIX_PANEL_TOKEN }} |