Skip to content

Commit a707685

Browse files
committed
change how release tag verification is checked
1 parent 49f8f43 commit a707685

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/release.yml

+1-10
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131

3232
build:
3333
name: Build Package
34+
if: github.event.head_commit.verification.verified == true
3435
runs-on: ubuntu-latest
3536
permissions:
3637
contents: read
@@ -65,16 +66,6 @@ jobs:
6566
# verify version
6667
RELEASE_VERSION=$(just validate_version $TAG_NAME)
6768
68-
# check that github has marked the tag as verified
69-
export TAG_URL=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ github.repository_owner }}/${{ github.repository }}/git/refs/tags/$TAG_NAME | jq -r ".object.url")
70-
verified=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "$TAG_URL" | jq -r ".verification.verified")
71-
if [ "$verified" != "true" ]; then
72-
echo $TAG_URL
73-
echo $verified
74-
echo "Error: Tag verification failed." >&2
75-
exit 1
76-
fi
77-
7869
# export the release version
7970
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
8071
- name: Build the binary wheel and a source tarball

0 commit comments

Comments
 (0)