Skip to content

Commit 385b36a

Browse files
committed
Store artifacts
1 parent c88c273 commit 385b36a

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: ./.github/actions/setup-python-poetry
1515
- 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/
1621
Publish:
1722
name: Publish Python 🐍 distribution 📦 to PyPI
1823
runs-on: ubuntu-latest
@@ -26,5 +31,10 @@ jobs:
2631
- build
2732

2833
steps:
34+
- name: Download all the dists
35+
uses: actions/download-artifact@v3
36+
with:
37+
name: python-package-distributions
38+
path: dist/
2939
- name: Publish distribution 📦 to PyPI
3040
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)