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 eeaef48 commit f9349deCopy full SHA for f9349de
.github/workflows/ci.yml
@@ -40,7 +40,7 @@ jobs:
40
- name: Lint
41
run: make lint
42
43
- sdist:
+ build:
44
needs: test
45
runs-on: ubuntu-latest
46
steps:
@@ -54,15 +54,15 @@ jobs:
54
- name: Install
55
run: make install
56
- name: Build
57
- run: python -m build --sdist
+ run: python -m build
58
- name: Upload
59
uses: actions/upload-artifact@v3
60
with:
61
name: sdist
62
path: dist
63
64
publish:
65
- needs: sdist
+ needs: build
66
67
if: startsWith(github.ref, 'refs/tags/v')
68
permissions:
0 commit comments