Update ontdoc.yml #156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: [push] | |
jobs: | |
ontdocI: | |
uses: sparqlunicorn/sparqlunicornGoesGIS-ontdoc/.github/workflows/udoc.yml@main | |
name: Ontdoc I | |
with: | |
rdffilepath: data/ct_obj_pf_1.ttl data/ct_feature_observation_1.ttl data/genericforms_1.ttl data/informationcarrier_1.ttl data/potformars_1.ttl data/statement_applique_1.ttl data/feature_1.ttl | |
version: v018 | |
docpath: docs/ | |
prefixns: http://data.archaeology.link/data/ars/ | |
prefixnsshort: ars | |
indexpages: true | |
metadatatable: true | |
createcollections: false | |
iiif: true | |
createnonNSPages: true | |
createVOWL: true | |
preferredlang: en | |
ghpages: true | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Initial checkout | |
uses: actions/checkout@v1 | |
- name: Create Doxygen Documentation 🔧 | |
run: | | |
sudo apt-get install python3 python3-pip -y | |
pip3 install pylode | |
mkdir docs | |
cd docs | |
python3 -m pylode -o ontology.html ../ontology/ontology.ttl | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
BRANCH: gh-pages | |
FOLDER: docs/ |