Skip to content

Bump version

Bump version #5

Workflow file for this run

# 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