File tree 1 file changed +1
-10
lines changed
1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change 31
31
32
32
build :
33
33
name : Build Package
34
+ if : github.event.head_commit.verification.verified == true
34
35
runs-on : ubuntu-latest
35
36
permissions :
36
37
contents : read
65
66
# verify version
66
67
RELEASE_VERSION=$(just validate_version $TAG_NAME)
67
68
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
-
78
69
# export the release version
79
70
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
80
71
- name : Build the binary wheel and a source tarball
You can’t perform that action at this time.
0 commit comments