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.
2 parents 62ffa2c + da8c7aa commit 0ce7e7dCopy full SHA for 0ce7e7d
.github/workflows/release-python.yml
@@ -67,6 +67,23 @@ jobs:
67
68
publish:
69
needs: [build-dist, static-scan]
70
+ name: Upload release to PyPI
71
+ runs-on: ubuntu-latest
72
+ environment: release
73
+ permissions:
74
+ id-token: write
75
+ steps:
76
+ - name: Download all the dists
77
+ uses: actions/download-artifact@v4
78
+ with:
79
+ name: all-dist-${{ github.run_id }}
80
+ path: dist/
81
+ - name: Publish package distributions to PyPI
82
+ if: startsWith(inputs.dry_run, 'false')
83
+ uses: pypa/gh-action-pypi-publish@release/v1
84
+
85
+ post-publish:
86
+ needs: [publish]
87
runs-on: ubuntu-latest
88
environment: release
89
permissions:
0 commit comments