Skip to content

Commit 35ef71e

Browse files
committed
Fixed release issues
1 parent 1fe1f2b commit 35ef71e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
run: poetry build
3232
- name: Publish to test PyPI
3333
if: ${{ github.event_name == 'push' }}
34-
run: poetry publish -r testpypi
34+
uses: pypa/gh-action-pypi-publish@release/v1
35+
with:
36+
repository-url: https://test.pypi.org/legacy/
3537
- name: Publish to PyPI
3638
if: ${{ github.event_name == 'release' }}
37-
run: poetry publish
39+
uses: pypa/gh-action-pypi-publish@release/v1

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ packages = [
1313
python = "^3.9"
1414
pysigma = "^0.11.19"
1515

16-
[tool.poetry.dev-dependencies]
17-
1816
[tool.poetry.group.dev.dependencies]
1917
pytest = "^8.2.2"
2018
pytest-cov = "^5.0.0"

0 commit comments

Comments
 (0)