mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-28 23:15:52 +00:00
* Use official build environment Docker image * Update documentation and Doxygen website URLs
26 lines
626 B
YAML
26 lines
626 B
YAML
name: Build and publish Doxygen documentation
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
|
|
jobs:
|
|
job:
|
|
runs-on: ubuntu-18.04
|
|
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
|