Merge pull request #24 from faberNovel/release/2.1.0 #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bundle install | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler: "Gemfile.lock" | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Publish release | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN_CI }} | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TOKEN_CI }} | |
run: bundle exec fastlane publish_release |