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 c797f96 commit bee51adCopy full SHA for bee51ad
.github/workflows/build.yaml
@@ -35,7 +35,7 @@ jobs:
35
pypi-publish:
36
name: upload release to PyPI
37
runs-on: ubuntu-latest
38
- needs: test
+ # needs: test
39
# Specifying a GitHub environment is optional, but strongly encouraged
40
environment:
41
name: pypi
@@ -44,6 +44,12 @@ jobs:
44
# IMPORTANT: this permission is mandatory for Trusted Publishing
45
id-token: write
46
steps:
47
+ - uses: actions/checkout@v4
48
+ - name: Set up Python ${{ matrix.python-version }}
49
+ uses: actions/setup-python@v5
50
+ with:
51
+ python-version: 3.9
52
+ cache: 'pip'
53
- name: Build
54
run: python -m build --sdist .
55
- name: Publish package distributions to PyPI
0 commit comments