Closed maxim-lobanov closed 4 years ago
This action sets up specific version of Cocoapods in GitHub Actions workflow. Action supports two ways to specify Cocoapods version:
version
Podfile.lock
podfile-path
latest
1.5.2
1.9.1
myApp/Podfile.lock
At the same time, only one parameter should be specified.
name: CI on: [push] jobs: build: name: Setup Cocoapods based on provided version runs-on: macos-latest steps: - name: setup-cocoapods uses: maxim-lobanov/setup-cocoapods with: version: 1.9.0 build: name: Setup Cocoapods based on Podfile.lock runs-on: macos-latest steps: - name: setup-cocoapods uses: maxim-lobanov/setup-cocoapods with: podfile-path: myApp/Podfile.lock
The scripts and documentation in this project are released under the MIT License
setup-cocoapods
This action sets up specific version of Cocoapods in GitHub Actions workflow.
Action supports two ways to specify Cocoapods version:
version
parameterPodfile.lock
file usingpodfile-path
parameter. In this case, version of Cocoapods will be parsed from Podfile.lock.Available parameters
latest
,1.5.2
,1.9.1
Podfile.lock
file to determine Cocoapods version dynamicallymyApp/Podfile.lock
At the same time, only one parameter should be specified.
Usage
License
The scripts and documentation in this project are released under the MIT License