Automated update of dot.m4 #148
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: publish documentation | |
# description: If changes are made (e.g. by build action) in relevant files, generate new documentation | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'README-source.adoc' | |
- '*/README-source.adoc' | |
- 'docs/Makefile' | |
- 'docs/algebras.dot.m4' | |
- '.github/workflows/publish-documentation.yml' | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
container: asciidoctor/docker-asciidoctor:latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
set-safe-directory: true | |
- name: Create html from adoc | |
run: | | |
echo "PWD" $(pwd) | |
git config --global --add safe.directory $(pwd) | |
cd docs | |
apk add graphviz m4 | |
make clean index.html | |
git status | |
git pull | |
- name: Commit generated dot file if it changed | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: Automated update of documentation https://mihxil.github.io/math/ | |
add: docs | |
if: ${{ github.event_name == 'push' }} |