Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/build-website/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
GH_TOKEN: ${{ inputs.repo_access_token }}
run: |
echo "Finding latest library-docs release..."
LATEST_TAG=$(gh release list --repo ${{ github.repository }} --limit 50 | grep "library-docs-" | head -1 | awk '{print $1}')
LATEST_TAG=$(gh release list --repo ${{ github.repository }} --limit 50 | grep "library-docs-" | head -1 | awk '{print $3}')
if [ -z "$LATEST_TAG" ]; then
echo "Error: No library-docs release found. Run the 'Generate Library' workflow first."
exit 1
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/generate-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ jobs:
gh release create "library-docs-${VERSION}" \
--title "Library Docs ${VERSION}" \
--notes "Pre-built library documentation for fast preview builds. Generated $(date -u +'%Y-%m-%d %H:%M:%S UTC')." \
--latest \
library-docs.tar.gz

- name: Cleanup Old Releases
Expand Down
Loading