-
Notifications
You must be signed in to change notification settings - Fork 2
86 lines (71 loc) · 2.7 KB
/
version_bump.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: Version Bump
on:
push:
branches:
- '*'
jobs:
version_bump:
runs-on: ubuntu-latest
steps:
# 3.4.1. Checkout code
- name: 🛎 Checkout
uses: actions/checkout@v3
# 3.4.2. Install and setup Python
- name: 🐍 Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
# 3.4.2. Install and setup Python
- name: Install toml
run: |
pip install toml
- name: Check for commit message
id: commit
run: |
commit_message=$(git log -1 --pretty=%B)
echo "::set-output name=commit_message::$commit_message"
- name: Extract current version from API/pyproject.toml
id: extract-version
run: |
version=$(python -c "import toml; print(toml.load('API/pyproject.toml')['tool.poetry']['version'])")
echo "Current version: $version"
echo "::set-output name=current_version::$version"
- name: Bump Version
id: bump
run: |
version="${{ steps.extract-version.outputs.current_version }}"
commit_message="${{ steps.commit.outputs.commit_message }}"
echo "::set-output name=commit::true"
if [[ "$commit_message" == *"[major]"* ]]; then
IFS='.' read -ra version_parts <<< "$version"
major=$((version_parts[0] + 1))
minor=0
patch=0
elif [[ "$commit_message" == *"[minor]"* ]]; then
IFS='.' read -ra version_parts <<< "$version"
major="${version_parts[0]}"
minor=$((version_parts[1] + 1))
patch=0
elif [[ "$commit_message" == *"[patch]"* ]]; then
IFS='.' read -ra version_parts <<< "$version"
major="${version_parts[0]}"
minor="${version_parts[1]}"
patch=$((version_parts[2] + 1))
else
echo "No version bump specified in commit message"
echo "::set-output name=commit::false"
fi
new_version="$major.$minor.$patch"
echo "Bumping version to $new_version"
# Update API/pyproject.toml with the new version
python -c "import toml; config = toml.load('API/pyproject.toml'); config['project']['version'] = '$new_version'; f = open('API/pyproject.toml', 'w'); toml.dump(config, f); f.close()"
- name: Commit and Push
run: |
if [[ "$commit" == "true" ]]; then
git config user.name "GitHub Actions"
git config user.email "<>"
git add API/pyproject.toml
git commit -m "Bump version to $new_version"
git push origin HEAD:main
fi