Skip to content

Replace echo with puts #13

Replace echo with puts

Replace echo with puts #13

Workflow file for this run

name: Frontend
on:
push:
branches:
- 'main'
- 'feat/fastlane_gha'
jobs:
build-ios:
name: Build (iOS)
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
- run: npm ci
working-directory: ./frontend
- run: npx expo prebuild
working-directory: ./frontend
- run: bundle install
working-directory: ./frontend
- run: bundle exec fastlane main_development
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
FASTLANE_USER: ${{ secrets.FASTLANE_USER }}
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{ secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD }}
working-directory: ./frontend