We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c88c273 commit 385b36aCopy full SHA for 385b36a
1 file changed
.github/workflows/release.yml
@@ -13,6 +13,11 @@ jobs:
13
- uses: actions/checkout@v4
14
- uses: ./.github/actions/setup-python-poetry
15
- run: poetry build
16
+ - name: Store the distribution packages
17
+ uses: actions/upload-artifact@v3
18
+ with:
19
+ name: python-package-distributions
20
+ path: dist/
21
Publish:
22
name: Publish Python 🐍 distribution 📦 to PyPI
23
runs-on: ubuntu-latest
@@ -26,5 +31,10 @@ jobs:
26
31
- build
27
32
28
33
steps:
34
+ - name: Download all the dists
35
+ uses: actions/download-artifact@v3
36
37
38
29
39
- name: Publish distribution 📦 to PyPI
30
40
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments