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 516a1b8 commit b0390a7Copy full SHA for b0390a7
.github/workflows/release.yml
@@ -83,6 +83,11 @@ jobs:
83
runs-on: ubuntu-latest
84
timeout-minutes: 10
85
needs: release
86
+ environment:
87
+ name: pypi
88
+ url: https://pypi.org/p/mex-release
89
+ permissions:
90
+ id-token: write # IMPORTANT: mandatory for trusted publishing
91
steps:
92
- name: Checkout repo
93
uses: actions/checkout@v4
@@ -117,3 +122,6 @@ jobs:
117
122
for filename in dist/*; do
118
123
gh release upload ${{ needs.release.outputs.tag }} ${filename};
119
124
done
125
+
126
+ - name: Publish distribution 📦 to PyPI
127
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments