Skip to content

Commit 4228101

Browse files
authored
chrore: fix publish to pypi (#129)
Signed-off-by: Nirmal <nirmal.sasidharan@de.bosch.com>
1 parent 0b931f1 commit 4228101

File tree

3 files changed

+4
-17
lines changed

3 files changed

+4
-17
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,9 @@ jobs:
5555
5656
- name: "Deploy to pypi repository"
5757
env:
58-
PYPI_USER: ${{ secrets.PYPI_USERNAME }}
59-
PYPI_PASS: ${{ secrets.PYPI_PASSWORD }}
58+
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
6059
run: |
61-
poetry publish --username "$PYPI_USER" --password "$PYPI_PASS"
60+
poetry publish
6261
6362
- name: "Deploy binaries to gh-release"
6463
uses: softprops/action-gh-release@v1

CHANGELOG.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,6 @@
1313

1414
<!--next-version-placeholder-->
1515

16-
## v3.3.8 (2024-04-30)
17-
18-
### Fix
19-
20-
- fix broken release of v3.3.8 (try #3) (#128)
21-
- fix broken release of v3.3.8 (try #2) (#127)
22-
- fix broken release of v3.3.8 (#126)
23-
- **python-version**: Updated python to 3.12 and dependencies
24-
- **python-version**: Updated python to 3.12 and dependencies
25-
- **python-version**: Added numpy to pyproject
26-
- **python-version**: Updated python to 3.12 and dependencies
27-
2816
## v3.3.7 (2023-10-20)
2917

3018
### Fix

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
[tool.poetry]
1111
name = "doxysphinx"
12-
version = "3.3.8"
12+
version = "3.3.7"
1313
description = "Integrates doxygen html documentation with sphinx."
1414
authors = [
1515
"Nirmal Sasidharan <nirmal.sasidharan@de.bosch.com>",
@@ -85,7 +85,7 @@ doxysphinx = "doxysphinx.cli:cli"
8585

8686
[tool.commitizen]
8787
name = "cz_conventional_commits"
88-
version = "3.3.8"
88+
version = "3.3.7"
8989
tag_format = "v$version"
9090
version_files = ["pyproject.toml:^version"]
9191
bump_message = """chore(release): release $current_version → $new_version by commitizen [skip-ci]

0 commit comments

Comments
 (0)