Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/react-native-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,16 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-

- name: 🏗 Install Fastlane
run: |
run: yarn global add fastlane

- name: 📋 Run Fastlane Match
run: |
fastlane match --type development --bundle_id ${{ secrets.MATCH_UNIT_BUNDLEID }} --git_url ${{ secrets.MATCH_GIT_URL }} --git_basic_authorization ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
fastlane match --type adhoc --bundle_id ${{ secrets.MATCH_UNIT_BUNDLEID }} --git_url ${{ secrets.MATCH_GIT_URL }} --git_basic_authorization ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
fastlane match --type appstore --bundle_id ${{ secrets.MATCH_UNIT_BUNDLEID }} --git_url ${{ secrets.MATCH_GIT_URL }} --git_basic_authorization ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}

- name: 📦 Install dependencies
run: |
yarn install --frozen-lockfile
Expand Down
Loading