diff --git a/.github/workflows/gen-docs.yml b/.github/workflows/gen-docs.yml new file mode 100644 index 00000000..0200a312 --- /dev/null +++ b/.github/workflows/gen-docs.yml @@ -0,0 +1,50 @@ +name: Generate Documentation + +on: + push: + branches: + - master + pull_request: + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Checkout submodules + shell: bash + run: | + auth_header="$(git config --local --get http.https://github.com/.extraheader)" + git submodule sync --recursive + git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 + + # Initial setup + - name: Setup mdBook + uses: peaceiris/actions-mdbook@v1 + with: + mdbook-version: 'latest' + + # Build all the components + - name: Build RustDoc + uses: actions-rs/cargo@v1 + with: + command: doc + - name: Build mdBook + run: mdbook build + + # Organize the output + - name: Create output directory + run: mkdir -p documentation_output + - name: Move mdBook output + run: mv target/book documentation_output/book + - name: Move RustDoc output + run: mv target/doc documentation_output/rustdoc + - name: Move index page + run: mv assets/www/index.html documentation_output/index.html + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + if: ${{ github.ref == 'refs/heads/master' }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./documentation_output \ No newline at end of file diff --git a/.gitignore b/.gitignore index 6985cf1b..32db6399 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,6 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + +# MdBook generated files +/book \ No newline at end of file diff --git a/assets/www/README.txt b/assets/www/README.txt new file mode 100644 index 00000000..f7125b80 --- /dev/null +++ b/assets/www/README.txt @@ -0,0 +1 @@ +This directory exists just to host the web index.html file. \ No newline at end of file diff --git a/assets/www/index.html b/assets/www/index.html new file mode 100644 index 00000000..c0a283c9 --- /dev/null +++ b/assets/www/index.html @@ -0,0 +1,13 @@ + + +
+ + + +