Skip to content

Commit 49f8f43

Browse files
committed
try fix release tag verification
1 parent fdcd6e1 commit 49f8f43

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,10 @@ jobs:
6767
6868
# check that github has marked the tag as verified
6969
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
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
7274
echo "Error: Tag verification failed." >&2
7375
exit 1
7476
fi

0 commit comments

Comments
 (0)