fix: ReadTheDocs should display all versions

Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
This commit is contained in:
Yuan Tang 2025-05-14 21:25:14 -04:00
parent ff247e35be
commit ed9ac853cd
No known key found for this signature in database
2 changed files with 11 additions and 3 deletions

View file

@ -59,13 +59,19 @@ jobs:
exit 1
fi
# Get the version from the GitHub ref
VERSION=${GITHUB_REF#refs/*/}
response=$(curl -X POST \
-H "Content-Type: application/json" \
-d "{\"token\": \"$TOKEN\"}" \
-d "{
\"token\": \"$TOKEN\",
\"version\": \"$VERSION\"
}" \
https://readthedocs.org/api/v2/webhook/llama-stack/289768/)
echo "Response: $response"
if [ $(echo $response | jq -r '.build_triggered') != 'true' ]; then
echo "Failed to trigger ReadTheDocs build"
exit 1
fi
fi