We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd452b9 commit ae62f1bCopy full SHA for ae62f1b
1 file changed
.github/workflows/ci-cd.yml
@@ -12,8 +12,17 @@ jobs:
12
permissions:
13
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
14
steps:
15
- # retrieve your distributions here
+ - uses: actions/checkout@v4
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: "3.x"
20
- name: Generate package distribution
- run: python setup.py sdist
21
+ run: python3 setup.py sdist
22
+ - name: Download all the dists
23
+ uses: actions/download-artifact@v3
24
25
+ name: python-package-distributions
26
+ path: dist/
27
- name: Publish package distributions to PyPI
28
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments