Cocoapods is already installed, so we don't need to explicitly install it
This commit is contained in:
11
.github/workflows/fastlane.yml
vendored
11
.github/workflows/fastlane.yml
vendored
@@ -7,15 +7,10 @@ jobs:
|
|||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: '12'
|
|
||||||
- name: Install Node dependencies
|
- name: Install Node dependencies
|
||||||
run: npm install
|
run: npm install
|
||||||
- name: Install and CocoaPods and defined pods
|
- name: Install CocoaPods dependencies
|
||||||
run: |
|
run: pod install --project-directory=./ios
|
||||||
brew install cocoapods
|
|
||||||
pod install --project-directory=./ios
|
|
||||||
- name: Run fastlane setup
|
- name: Run fastlane setup
|
||||||
env:
|
env:
|
||||||
APPLE_ACCOUNT: ${{ secrets.APPLE_ACCOUNT }}
|
APPLE_ACCOUNT: ${{ secrets.APPLE_ACCOUNT }}
|
||||||
@@ -29,8 +24,8 @@ jobs:
|
|||||||
TEAM_ID: ${{ secrets.TEAM_ID }}
|
TEAM_ID: ${{ secrets.TEAM_ID }}
|
||||||
run: |
|
run: |
|
||||||
fastlane beta --verbose
|
fastlane beta --verbose
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
with:
|
||||||
name: my-artifact
|
name: my-artifact
|
||||||
path: output/*.ipa
|
path: output/*.ipa
|
||||||
Reference in New Issue
Block a user