We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 754b9a5 commit b07b693Copy full SHA for b07b693
.github/workflows/release.yml
@@ -34,13 +34,21 @@ jobs:
34
- name: Check env vars
35
run: |
36
echo "Triggered by: ${{ github.event_name }}"
37
+ - uses: actions/upload-artifact@v3
38
+ with:
39
+ name: dist
40
+ path: |
41
+ dist
42
43
# PyPI on release
44
pypi:
45
needs: package
46
runs-on: ubuntu-latest
47
if: github.event_name == 'release'
48
steps:
49
+ - uses: actions/download-artifact@v3
50
51
52
- name: Publish to PyPI
53
uses: pypa/gh-action-pypi-publish@release/v1
54
with:
@@ -53,6 +61,9 @@ jobs:
61
62
if: github.event_name == 'push'
55
63
64
65
66
56
67
- name: Publish to TestPyPI
57
68
58
69
0 commit comments