Skip to content

Commit b850286

Browse files
committed
fix: disable sigstore signing while waiting on PyPI issue
pypa/gh-action-pypi-publish#357
1 parent 8f21ae4 commit b850286

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/semantic-release.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,13 @@ jobs:
5959
fi
6060
exit $status
6161
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/*
62+
# Wait for the outcome of
63+
# https://github.com/pypa/gh-action-pypi-publish/issues/357
64+
#- name: Sign the release with Sigstore
65+
# if: steps.release.outputs.released == 'true'
66+
# uses: sigstore/gh-action-sigstore-python@v3.0.0
67+
# with:
68+
# inputs: dist/*
6769

6870
- name: Publish package distributions to PyPI
6971
if: steps.release.outputs.released == 'true'

0 commit comments

Comments
 (0)