We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a541d36 + 28b1521 commit 794236fCopy full SHA for 794236f
.github/workflows/sync-extension.yml
@@ -83,8 +83,10 @@ jobs:
83
echo "⬇️ Fetching release info for $TAG from $REPO..."
84
85
# Capture response to file for debugging
86
- HTTP_CODE=$(curl -s -w "%{http_code}" -o release.json \
+ HTTP_CODE=$(curl -L -s -w "%{http_code}" -o release.json \
87
-H "Authorization: token ${{ secrets.SENTIENCE_CHROME_TOKEN }}" \
88
+ -H "Accept: application/vnd.github+json" \
89
+ -H "X-GitHub-Api-Version: 2022-11-28" \
90
"https://api.github.com/repos/$REPO/releases/tags/$TAG")
91
92
if [ "$HTTP_CODE" != "200" ]; then
0 commit comments