Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
47 lines (47 sloc)
1.61 KB
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 Version | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| type: | |
| description: 'Type of version (`major`, `minor`, `patch`)' | |
| required: true | |
| default: 'patch' | |
| jobs: | |
| bump: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token | |
| fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
| token: ${{secrets.PAT}} # use a personal acces token so that other actions can trigger | |
| # Bump the version number | |
| - name: Update Version | |
| uses: MCKanpolat/auto-semver-action@1.0.5 | |
| id: version | |
| with: | |
| releaseType: ${{ github.event.inputs.type }} | |
| github_token: ${{ secrets.PAT }} | |
| # update the manifest.json with the new version | |
| - name: Update manifest version | |
| uses: jossef/action-set-json-field@v1 | |
| with: | |
| file: manifest.json | |
| field: version | |
| value: ${{ steps.version.outputs.version }} | |
| # Commit the manifest.json and update the tag | |
| - name: Commit manifest | |
| run: | | |
| git config --local user.name "GitHub Action" | |
| git config --local user.email "action@github.com" | |
| git branch --show-current | |
| git add -u | |
| git commit -m "${{ steps.version.outputs.version }}" | |
| git tag -fa ${{ steps.version.outputs.version }} -m "${{ steps.version.outputs.version }}" | |
| # push the commit | |
| - name: Push changes | |
| uses: ad-m/github-push-action@v0.6.0 | |
| with: | |
| github_token: ${{secrets.PAT}} | |
| tags: true | |
| branch: ${{ github.ref }} |