-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.14 KB
/
bump_version.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 patch version using poetry
on:
pull_request_target:
types:
- closed
branches:
- main
jobs:
bump-up-version:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.VERSION_DECOIMPACT }}
- name: install python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.2
- name: bump version and update template_input.yaml
run: |
git config user.name github-actions
git config user.email github-actions@github.com
poetry version patch
PROJECT_VERSION=$(poetry version --short)
sed -i "1 s/.*/version: $PROJECT_VERSION/" template_input.yaml
- name: commit changes
run: |
PROJECT_VERSION=$(poetry version --short)
git add template_input.yaml
git add pyproject.toml
git commit -m "bump patch version: $PROJECT_VERSION"
git push