Bump version #5
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
# After Appstore deployment this will create a new version for next release. | |
name: Bump version | |
on: | |
workflow_dispatch: | |
concurrency: | |
group: movapp-apple-bump-version-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
bump_version: | |
name: Create new major version | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.ACTIONS_TOKEN }} | |
- name: Run fastlane | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
bundle install | |
bundle exec fastlane bump_version | |
git push origin --follow-tags |