From b9501265f9f8a989b6b0f64a0584e594b65c472c Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Sat, 25 Jul 2020 21:18:14 +0200 Subject: [PATCH] Cocoapods is already installed, so we don't need to explicitly install it --- .github/workflows/fastlane.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/fastlane.yml b/.github/workflows/fastlane.yml index 47a105e..077d5fd 100644 --- a/.github/workflows/fastlane.yml +++ b/.github/workflows/fastlane.yml @@ -7,15 +7,10 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - with: - node-version: '12' - name: Install Node dependencies run: npm install - - name: Install and CocoaPods and defined pods - run: | - brew install cocoapods - pod install --project-directory=./ios + - name: Install CocoaPods dependencies + run: pod install --project-directory=./ios - name: Run fastlane setup env: APPLE_ACCOUNT: ${{ secrets.APPLE_ACCOUNT }} @@ -29,8 +24,8 @@ jobs: TEAM_ID: ${{ secrets.TEAM_ID }} run: | fastlane beta --verbose + - uses: actions/upload-artifact@v2 - name: Upload artifact - uses: actions/upload-artifact@v2 with: name: my-artifact path: output/*.ipa \ No newline at end of file