Skip to content

Commit c6dd446

Browse files
committed
Fix automated release workflow
1 parent e275f02 commit c6dd446

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- "v*"
77
branches:
88
- master
9+
pull_request:
910

1011
jobs:
1112
build_sdist:
@@ -88,9 +89,12 @@ jobs:
8889
uses: actions/download-artifact@v2
8990
with:
9091
path: dist/
92+
- name: List all downloaded Artifacts
93+
run: |
94+
ls -lha dist/wheel dist/sdist
9195
- name: Publish to PyPI
9296
env:
9397
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
9498
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
9599
run: |
96-
twine upload dist/*
100+
twine upload dist/wheel/* dist/sdist/*

0 commit comments

Comments
 (0)