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 7ec7144 commit a7f58b3Copy full SHA for a7f58b3
.github/workflows/python.yml
@@ -29,3 +29,25 @@ jobs:
29
- name: Test with pytest
30
run: |
31
pytest --cov=helloasso_python
32
+ - name: upload dists
33
+ uses: actions/upload-artifact@v4
34
+ with:
35
+ name: release-dists
36
+ path: dist/
37
+
38
+ pypi-publish:
39
+ runs-on: ubuntu-latest
40
+ needs:
41
+ - build
42
+ permissions:
43
+ id-token: write
44
45
+ steps:
46
+ - name: Retrieve release distributions
47
+ uses: actions/download-artifact@v4
48
49
50
51
52
+ - name: Publish release distributions to PyPI
53
+ uses: pypa/gh-action-pypi-publish@release/v1.12
0 commit comments