Skip to content

Commit 8b06cd8

Browse files
+ hotfix
1 parent 35ca30f commit 8b06cd8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,29 @@ jobs:
2323
id-token: write
2424

2525
steps:
26+
- uses: actions/checkout@v4
27+
28+
- uses: actions/setup-python@v4
29+
with:
30+
python-version: "3.x"
31+
2632
- name: Build distribution
33+
uses: |
34+
python3 -m pip install -U pip
35+
python3 -m pip install -U build --user
36+
python3 -m build
37+
38+
- name: Store the distribution packages
39+
uses: actions/upload-artifact@v3
40+
with:
41+
name: python-package-distributions
42+
path: dist/
43+
44+
45+
- name: Download distribution packages
2746
uses: actions/download-artifact@v3
2847
with:
48+
name: python-package-distributions
2949
path: dist/
3050

3151
- name: Publish package distributions to PyPI

0 commit comments

Comments
 (0)