Stop including MercadoPagoSDK pod. #4993
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: Fastlane | |
on: [push, pull_request] | |
jobs: | |
FASTLANE_SCREENSHOTS: | |
if: false | |
name: Fastlane Screenshots | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '12.x' | |
- run: yarn install | |
- run: cp GoogleService-Info.plist.dist ios/GoogleService-Info.plist | |
- uses: actions/setup-ruby@v1 | |
- name: Install CocoaPods & RubyGems | |
run: | | |
cd ios/ | |
pod install --repo-update | |
bundle install | |
cd .. | |
- name: Create screenshots with Fastlane | |
run: | | |
cd ios/ | |
bundle exec fastlane snapshot | |
cd .. | |
- name: Upload screenshots artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: screenshots-ios | |
path: ios/fastlane/screenshots |