Skip to content

Commit ae62f1b

Browse files
committed
Fix CI
1 parent bd452b9 commit ae62f1b

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,17 @@ jobs:
1212
permissions:
1313
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
1414
steps:
15-
# retrieve your distributions here
15+
- uses: actions/checkout@v4
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: "3.x"
1620
- name: Generate package distribution
17-
run: python setup.py sdist
21+
run: python3 setup.py sdist
22+
- name: Download all the dists
23+
uses: actions/download-artifact@v3
24+
with:
25+
name: python-package-distributions
26+
path: dist/
1827
- name: Publish package distributions to PyPI
1928
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)