Skip to content

more fetch deep

more fetch deep #3

Workflow file for this run

# Generate documentation and Release
name: CI
# 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: 2
- 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
# What files were changed:
- name: Check files
shell: bash
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git diff --name-only HEAD HEAD~1 -- ./development > updated_files.txt
while read p; do
xmllint $p --xpath "//*[local-name()='RDF']/*[local-name()='Ontology']/*[local-name()='versionInfo']/text()";
echo "$p" | sed s/Ontology.owl//g | sed s/development\\///g | sed s/PD/pd-/g | tr '[:upper:]' '[:lower:]';
done < updated_files.txt