Merge pull request #308 from kjvbrt/user-eos-rewrites #139
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: documentation | |
on: [push] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cvmfs-contrib/github-action-cvmfs@v3 | |
- name: Start container | |
run: | | |
docker run -it --name CI_container -v ${GITHUB_WORKSPACE}:/Package -v /cvmfs:/cvmfs:shared -d ghcr.io/aidasoft/centos7:latest /bin/bash | |
- name: Compile Documentation | |
run: | | |
docker exec CI_container /bin/bash -c 'cd Package | |
yum install -y graphviz | |
source ./setup.sh | |
mkdir -p build | |
cd build | |
cmake .. | |
make doc' | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build/doxygen/html | |
destination_dir: doc/latest | |
man: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install mandoc | |
run: | | |
sudo apt-get install -y mandoc | |
- name: Compile HTML pages | |
run: | | |
.github/scripts/man2html.sh | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./man/html | |
destination_dir: man/latest |