We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdcd6e1 commit 49f8f43Copy full SHA for 49f8f43
.github/workflows/release.yml
@@ -67,8 +67,10 @@ jobs:
67
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
- result=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "$TAG_URL" | jq -r ".verification.verified")
71
- if [ "$result" != "true" ]; then
+ verified=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "$TAG_URL" | jq -r ".verification.verified")
+ if [ "$verified" != "true" ]; then
72
+ echo $TAG_URL
73
+ echo $verified
74
echo "Error: Tag verification failed." >&2
75
exit 1
76
fi
0 commit comments