merge: #22 from dev #25
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: | |
push: | |
branches: | |
- main | |
jobs: | |
build-then-bump: | |
if: "!startsWith(github.event.head_commit.message, 'bump:')" | |
runs-on: ubuntu-latest | |
name: "Build dist, bump version, create changelog" | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
fetch-depth: 0 | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install packages | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: 'dist' | |
message: 'chore: build dist package' | |
push: false | |
- name: Create bump and changelog | |
uses: commitizen-tools/commitizen-action@master | |
with: | |
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
changelog_increment_filename: CURRENT.md | |
extra_requirements: "cz-nhm" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
body_path: "CURRENT.md" | |
tag_name: v${{ env.REVISION }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |