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 980cccc commit d0206e7Copy full SHA for d0206e7
.github/workflows/ci.yml
@@ -30,6 +30,9 @@ jobs:
30
steps:
31
- name: Checkout repository
32
uses: actions/checkout@v3
33
+ with:
34
+ # setuptools_scm requires a non-shallow clone of the repository
35
+ fetch-depth: 0
36
37
- name: Setup Python
38
uses: actions/setup-python@v4
.github/workflows/pypi.yml
@@ -13,13 +13,16 @@ jobs:
13
14
15
- uses: actions/checkout@v3
16
17
18
19
20
- uses: actions/setup-python@v4
21
name: Install Python
22
23
- name: Build source distribution
24
run: |
- python setup.py sdist
25
+ pipx run build --sdist
26
27
- uses: pypa/gh-action-pypi-publish@master
28
with:
0 commit comments