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
14 changes: 10 additions & 4 deletions .github/workflows/regenerate-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install uv
uses: astral-sh/setup-uv@v5
Expand All @@ -45,11 +47,15 @@ jobs:
if [ $? -eq 0 ]; then
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add linkml_registry.yaml
git commit -m "Regenerate LinkML registry artifacts"
git push
git add linkml_registry.yaml docs/
if ! git diff --cached --quiet; then
git commit -m "Regenerate LinkML registry artifacts"
git push origin HEAD:main
else
echo "No changes to commit"
fi
else
echo "'make discover' failed to finish successfully"
echo "'make gendoc' failed to finish successfully"
fi
([ ! -f docs/about.md ] && cp src/docs/about.md docs/) || true
uv run mkdocs gh-deploy
2 changes: 1 addition & 1 deletion linkml_registry.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: LinkML-Discovery-Registry
homepage: https://github.com/linkml/linkml-registry
title: LinkML Registry (GitHub Search Discovery)
description: LinkML projects discovered via GitHub Search API. Generated on 2025-06-26 17:17:11
description: LinkML projects discovered via GitHub Search API. Generated on 2025-06-26 17:36:14
entries:
biolink/biolink-model:
title: biolink-model
Expand Down