Skip to content

Commit 2d54e7c

Browse files
fix: remove poetry version patch from CI
1 parent 5c199f5 commit 2d54e7c

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/CI.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,8 @@ jobs:
6565
6666
- name: Increment version
6767
run: |
68-
poetry version patch # params: patch, minor, major
6968
git config --global user.name 'GitHub Actions'
7069
git config --global user.email '[email protected]'
71-
git commit -am "chore: increment version"
7270
git push
73-
git tag $(poetry version -s)
74-
git push origin --tags
71+
git tag -f $(poetry version -s)
72+
git push -f origin --tags

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "api-to-dataframe"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
description = "A package to convert API responses to pandas dataframe"
55
authors = ["IvanildoBarauna <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)