Skip to content

Commit 3fb2bc7

Browse files
Merge pull request #41 from christian-hawk/fix_poetry_publish_cli
Fix poetry publish cli
2 parents 5397f3a + 37d2760 commit 3fb2bc7

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
2626
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2727
run: |
28-
poetry run publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD
28+
poetry publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD

CHANGELOG.md

-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
## 0.8.3 (2020-10-29)
2-
3-
### Refactor
4-
5-
- **automator.py**: remove unecessary prints
6-
7-
### Fix
8-
9-
- **get_all_droplets**: Fix no pagination handling
10-
111
## 0.8.2 (2020-10-25)
122

133
### Refactor

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pydoautomator"
3-
version = "0.8.3"
3+
version = "0.8.2"
44
description = "The Python lib for digital ocean automation"
55
authors = ["Christian Eland <[email protected]>"]
66
license = "Apache-2.0"
@@ -38,7 +38,7 @@ mkdocs-material = "^6.1.0"
3838

3939
[tool.commitizen]
4040
name = "cz_conventional_commits"
41-
version = "0.8.3"
41+
version = "0.8.2"
4242
tag_format = "$version"
4343
version_files = [
4444
"pyproject.toml:version"

0 commit comments

Comments
 (0)