Merge pull request #126 from Accedia/feat/add-32-bits-installation-as… #76
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: BUMP | |
on: | |
push: | |
branches: [develop] | |
jobs: | |
tag-and-bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 'Automated Version Bump' | |
uses: 'phips28/gh-action-bump-version@master' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PACKAGEJSON_DIR: 'electron-app' | |
with: | |
tag-prefix: 'v' | |
commit-message: 'CI: bumps version to {{version}} [skip ci]' | |
major-wording: 'MAJOR,major' | |
minor-wording: 'MINOR,minor' |