test #18
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
# Generate documentation and Release | |
name: CI | |
permissions: | |
contents: write | |
pull-requests: write | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push on development folder | |
push: | |
branches: | |
- main | |
- test | |
paths: [ development/*.owl ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 3 | |
- name: Install xmllint | |
shell: bash | |
run: | | |
sudo apt update | |
sudo apt install -y libxml2-utils | |
- name: Install widoco | |
shell: bash | |
run: | | |
docker pull ghcr.io/dgarijo/widoco:latest | |
- name: Check modified files | |
shell: bash | |
run: | | |
git diff --name-only HEAD HEAD~1 -- ./development > updated_files.txt | |
# What files were changed: | |
- name: Create docs | |
shell: bash | |
run: | | |
mkdir -p tmp | |
chmod 777 tmp | |
while read p; do | |
newFolder="$(echo "release/$p" | sed s/Ontology.owl//g | sed s/development\\///g | sed s/PD/pd-/g | tr '[:upper:]' '[:lower:]')/$(xmllint $p --xpath "//*[local-name()='RDF']/*[local-name()='Ontology']/*[local-name()='versionInfo']/text()" | sed s/v//g )" | |
ontology="$(echo $p | sed s/development\\///g)" | |
echo "$ontology -> $newFolder" | |
docker run --rm \ | |
-v `pwd`/development:/usr/local/widoco/in:Z \ | |
-v `pwd`/tmp:/usr/local/widoco/out:Z \ | |
ghcr.io/dgarijo/widoco:latest -ontFile in/$ontology -outFolder out -noPlaceHolderText | |
ls -la tmp | |
mv tmp $newFolder | |
chmod 664 $newFolder | |
done < updated_files.txt | |
# What files were changed: | |
- name: Final checks | |
shell: bash | |
run: | | |
cat updated_files.txt | |
git status | |
git diff | |
tree release | |
#env: | |
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |