Update global-services.adoc (#96) #43
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: WIS2 Guide | |
on: | |
push: | |
branches: | |
- main | |
- 'guide/**' | |
env: | |
FILE_BASENAME: wis2-guide-DRAFT | |
jobs: | |
build-wis2-guide: | |
name: Generate documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y \ | |
&& sudo apt-get install -y asciidoctor ruby-asciidoctor-pdf pandoc | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: build documentation | |
run: | | |
mkdir -p /tmp/wis2-guide/guide/images \ | |
&& cd guide \ | |
&& asciidoctor --trace -o /tmp/wis2-guide/guide/${FILE_BASENAME}.html index.adoc \ | |
&& asciidoctor --trace --backend docbook --out-file - index.adoc | pandoc --from docbook --to docx --output /tmp/wis2-guide/guide/${FILE_BASENAME}.docx \ | |
&& asciidoctor --trace -r asciidoctor-pdf --trace -b pdf -o /tmp/wis2-guide/guide/${FILE_BASENAME}.pdf index.adoc \ | |
&& cp images/*.png /tmp/wis2-guide/guide/images \ | |
&& 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 "[email protected]" | |
git config --global user.name "Tom Kralidis" | |
rm -rf guide | |
mv -f /tmp/wis2-guide/* . | |
git add . | |
git commit -am "update WIS2 Guide build" | |
git push | |