Skip to content

Commit cc8dbb7

Browse files
authored
Fix source build condition (#188)
Fix conditional for generating source for pypi update
1 parent 9c3302a commit cc8dbb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pypiupload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
run: |
2929
python setup.py bdist_wheel
3030
- name: Build Sources
31+
if: matrix.python-version == '3.x'
3132
run: |
3233
python setup.py sdist
33-
if: ${{ matrix.python-version }} == '3.x'
3434
- name: Publish
3535
env:
3636
TWINE_USERNAME: __token__

0 commit comments

Comments
 (0)