Skip to content

Commit 8711cab

Browse files
committed
Revert "fix: CD pipeline"
This reverts commit c7a43ad.
1 parent 34ec784 commit 8711cab

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/publish-to-pypi.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,20 @@ jobs:
1313
- uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
16-
1716
- name: Set up Python
1817
uses: actions/setup-python@v3
1918
with:
2019
python-version: '3.10'
21-
22-
- name: Install build tools first
20+
- name: Installing package
2321
run: |
24-
pip install --upgrade pip setuptools wheel build setuptools_scm
25-
22+
pip3 install .
23+
pip3 install .[pypi]
24+
pip3 install build wheel
25+
pip3 install setuptools --upgrade
26+
pip3 install setuptools_scm
2627
- name: Build Package
2728
run: |
28-
2929
python -m build --no-isolation
30-
3130
- name: Publish package to PyPI
3231
uses: pypa/gh-action-pypi-publish@release/v1
3332
with:

0 commit comments

Comments
 (0)