Skip to content

Commit 27f3384

Browse files
committed
fix deploy action to take advantage of other doc pr
1 parent b10fa8f commit 27f3384

File tree

4 files changed

+5
-27
lines changed

4 files changed

+5
-27
lines changed

.github/workflows/rebuild-schema.yml

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Rebuild KGX Schema and Deploy Documentation
1+
name: Rebuild KGX Schema
22

33
# Controls when the action will run
44
on:
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13-
rebuild-schema-and-docs:
13+
rebuild-schema:
1414
runs-on: ubuntu-latest
1515

1616
steps:
@@ -25,9 +25,6 @@ jobs:
2525
#----------------------------------------------
2626
- name: Check out repository
2727
uses: actions/checkout@v3
28-
with:
29-
# We need a full clone with history for the GitHub Pages deployment
30-
fetch-depth: 0
3128

3229
- name: Set up Python
3330
uses: actions/setup-python@v4
@@ -73,26 +70,6 @@ jobs:
7370
exit 1
7471
fi
7572
76-
#----------------------------------------------
77-
# build and deploy documentation
78-
#----------------------------------------------
79-
- name: Install documentation dependencies
80-
run: |
81-
poetry run pip install sphinx sphinx_rtd_theme sphinx-click recommonmark
82-
83-
- name: Build documentation
84-
run: |
85-
cd docs
86-
poetry run make html
87-
cd ..
88-
89-
- name: Deploy documentation to GitHub Pages
90-
uses: JamesIves/[email protected]
91-
with:
92-
branch: gh-pages
93-
folder: docs/_build/html
94-
clean: true
95-
9673
#----------------------------------------------
9774
# commit schema changes
9875
#----------------------------------------------

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Documentation
2121

2222
installation
2323
kgx_format
24+
kgx_schema_generation
2425
reference/index
2526
transformation_and_validation_examples
2627

docs/kgx_format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# KGX Data Distribution Format Specification
1+
# KGX Specification
22

33
The KGX format is a serialization of Biolink Model compliant knowledge graphs.
44

docs/kgx_schema_generation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# KGX Schema Transformation
1+
# KGX Schema
22

33
This document describes the schema transformation process used to create the KGX schema based on the Biolink Model. The KGX schema defines the structure for knowledge graphs in the KGX format while leveraging the rich semantics of the Biolink Model.
44

0 commit comments

Comments
 (0)