Delete the Pod steps in deploying workflow

This commit is contained in:
Mingshen Sun 2021-08-30 09:47:34 -07:00
parent 032436fa70
commit a8ff52fd27

View file

@ -7,7 +7,7 @@ on:
jobs:
build:
runs-on: macos-latest
runs-on: macos-11
strategy:
matrix:
channel: ['beta', 'release']
@ -25,12 +25,6 @@ jobs:
key: ${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: |
${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-
- uses: actions/cache@v2
with:
path: Pods
key: ${{ runner.os }}-pods-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-${{ secrets.CACHE_VERSION }}-
- uses: actions/cache@v2
id: gopenpgp-cache
with:
@ -42,8 +36,6 @@ jobs:
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Cocoapods
run: bundle exec pod install
- name: Carthage
if: steps.carthage-cache.outputs.cache-hit != 'true'
run: |