Actually provide CNAME #23
Workflow file for this run
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: deploy-manual | |
on: [ push ] | |
# push: | |
# branches: | |
# - 'main' | |
jobs: | |
deploy-manual: | |
# if: github.repository == 'NLnetLabs/simdzone' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
sudo apt-get install -y doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe python3-sphinx-tabs python3-sphinx-copybutton python3-sphinx-notfound-page | |
- run: | | |
set -e -x | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_DOCUMENTATION=on .. | |
cmake --build . --target manual | |
#mv manual _site | |
#tar -c -f github-pages _site | |
#mv github-pages ../ | |
#- run: | | |
#ls -als | |
- uses: actions/[email protected] | |
with: | |
path: build/manual | |
- uses: actions/deploy-pages@main |