Kpi review2 (#128) #93
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: WCMP2 specification | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'standard/**' | |
- 'kpi/**' | |
env: | |
SPEC_FILE_BASENAME: wcmp2-DRAFT | |
KPI_FILE_BASENAME: wcmp2-kpi-DRAFT | |
jobs: | |
build-wcmp2: | |
name: Generate documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y \ | |
&& sudo apt-get install -y pandoc \ | |
&& sudo gem install asciidoctor asciidoctor-pdf | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: build specification | |
run: | | |
mkdir -p /tmp/wcmp2/standard/images \ | |
&& cd standard \ | |
&& asciidoctor --trace -o /tmp/wcmp2/standard/${SPEC_FILE_BASENAME}.html index.adoc \ | |
&& asciidoctor --trace --backend docbook --out-file - index.adoc | pandoc --from docbook --to docx --output /tmp/wcmp2/standard/${SPEC_FILE_BASENAME}.docx \ | |
&& asciidoctor --trace -r asciidoctor-pdf --trace -b pdf -o /tmp/wcmp2/standard/${SPEC_FILE_BASENAME}.pdf index.adoc \ | |
&& cp images/*.png /tmp/wcmp2/standard/images \ | |
&& cd .. | |
- name: build KPIs | |
run: | | |
mkdir -p /tmp/wcmp2/standard/images \ | |
&& cd kpi \ | |
&& asciidoctor --trace -o /tmp/wcmp2/kpi/${KPI_FILE_BASENAME}.html index.adoc \ | |
&& asciidoctor --trace --backend docbook --out-file - index.adoc | pandoc --from docbook --to docx --output /tmp/wcmp2/kpi/${KPI_FILE_BASENAME}.docx \ | |
&& asciidoctor --trace -r asciidoctor-pdf --trace -b pdf -o /tmp/wcmp2/kpi/${KPI_FILE_BASENAME}.pdf index.adoc \ | |
&& cd .. | |
- name: checkout gh-pages branch | |
uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
- name: update gh-pages branch and publish | |
run: | | |
git checkout gh-pages | |
git config --global user.email "tomkralidis@gmail.com" | |
git config --global user.name "Tom Kralidis" | |
rm -rf standard kpi | |
mv -f /tmp/wcmp2/* . | |
git add . | |
git commit -am "update WMCP 2 build" | |
git push |