We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b43718a commit e6b0f62Copy full SHA for e6b0f62
1 file changed
.github/workflows/semantic-release.yaml
@@ -59,12 +59,18 @@ jobs:
59
fi
60
exit $status
61
62
+ - name: Sign the release with Sigstore
63
+ if: steps.release.outputs.released == 'true'
64
+ uses: sigstore/gh-action-sigstore-python@v3.0.0
65
+ with:
66
+ inputs: dist/*
67
+
68
- name: Publish package distributions to PyPI
- uses: pypa/gh-action-pypi-publish@release/v1
69
if: steps.release.outputs.released == 'true'
70
+ uses: pypa/gh-action-pypi-publish@release/v1
71
72
- name: Publish package distributions to GitHub Releases
- uses: python-semantic-release/publish-action@v9.21.1
73
74
+ uses: python-semantic-release/publish-action@v9.21.1
75
with:
76
github_token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
0 commit comments