Add podspec to your private repo on tag
event. The action will automatically update the podspec version based on the tag name using the version_bump_podspec action from Fastlane.
Required Specify your podspec private repo source URL.
Optional spec lint args.
Like in the following example, you can set the username
and password
URL values to your Github Username and Personal Access Token to be able to push to another repo.
You can also use another action to setup ssh on the build machine, like webfactory/ssh-agent.
- name: pod repo push
uses: maxep/pod-repo-push-action@0.1.2
with:
repo-url: https://maxep:${{ secrets.ACCESS_TOKEN }}@github.com/maxep/cocoapods-specs.git
The initial code is based on wlixcc/pod-lib-update-action.