Skip to content

Commit 7b2a667

Browse files
authored
Update python-action-mentoria.yml
1 parent 23733ad commit 7b2a667

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/python-action-mentoria.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,23 @@ jobs:
3737
- name: Test with pytest
3838
run: |
3939
pytest
40+
41+
42+
- uses: actions/checkout@v4
43+
44+
- uses: actions/setup-python@v5
45+
with:
46+
python-version: "3.x"
47+
48+
- name: Build release distributions
49+
run: |
50+
# NOTE: put your own distribution build steps here.
51+
python -m pip install build
52+
python -m build
53+
54+
- name: Upload distributions
55+
uses: actions/upload-artifact@v4
56+
with:
57+
name: release-dists
58+
path: dist/
59+

0 commit comments

Comments
 (0)