-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.18 KB
/
bump-up.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Bump version
on:
push:
branches:
- main
jobs:
update-version:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Determine version type
id: get_version_type
run: |
last_commit_message=$(git log -1 --pretty=%B)
echo "Last commit message: $last_commit_message"
if [[ "$last_commit_message" == *"#major"* ]]; then
echo "version_type=major" >> $GITHUB_ENV
elif [[ "$last_commit_message" == *"#minor"* ]]; then
echo "version_type=minor" >> $GITHUB_ENV
elif [[ "$last_commit_message" == *"#patch"* ]]; then
echo "version_type=patch" >> $GITHUB_ENV
else
echo "No specific version bump keyword found. Skip it"
fi
- name: Bump version
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
npm version ${{ env.version_type }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
tags: true
branch: ${{ github.ref }}