We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23733ad commit 7b2a667Copy full SHA for 7b2a667
.github/workflows/python-action-mentoria.yml
@@ -37,3 +37,23 @@ jobs:
37
- name: Test with pytest
38
run: |
39
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
57
+ name: release-dists
58
+ path: dist/
59
0 commit comments