mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-04 10:45:50 +00:00
* clang-format * levelization * clang-format * update workflow (#172) * update workflow * Update build-in-docker.yml * fix from `clang-format` * Update Enum.h
26 lines
623 B
YAML
26 lines
623 B
YAML
name: Build and publish Doxygen documentation
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
jobs:
|
|
job:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker://rippleci/rippled-ci-builder:2944b78d22db
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
- name: build
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
cmake -DBoost_NO_BOOST_CMAKE=ON ..
|
|
cmake --build . --target docs --parallel $(nproc)
|
|
- name: publish
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: build/docs/html
|