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 @@ + + + + + + + Ludum Dare 50 + + +

test

+ + + \ No newline at end of file diff --git a/book.toml b/book.toml new file mode 100644 index 00000000..af743bbc --- /dev/null +++ b/book.toml @@ -0,0 +1,25 @@ +[book] +authors = ["Evan Pratten"] +language = "en" +multilingual = false +src = "docs" +title = "Ludum Dare 50" + +[output.html] +mathjax-support = true +theme = "light" +default-theme = "light" +git-repository-url = "https://github.com/Ewpratten/ludum-dare-50" +site-url = "/docs" + +[output.html.search] +enable = true + +[output.html.print] +enable = true + +[rust] +edition = "2021" + +[build] +build-dir = "target/book" \ No newline at end of file diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md new file mode 100644 index 00000000..894497b6 --- /dev/null +++ b/docs/SUMMARY.md @@ -0,0 +1,6 @@ +# Summary + + 1. [Introduction](introduction.md) + 2. [Getting Started](getting-started.md) + 1. [Development Environment](development-environment.md) + 2. [Artist Information](artist-information.md) \ No newline at end of file diff --git a/docs/artist-information.md b/docs/artist-information.md new file mode 100644 index 00000000..0c302f08 --- /dev/null +++ b/docs/artist-information.md @@ -0,0 +1 @@ +# Artist Information diff --git a/docs/development-environment.md b/docs/development-environment.md new file mode 100644 index 00000000..f71241a4 --- /dev/null +++ b/docs/development-environment.md @@ -0,0 +1 @@ +# Development Environment diff --git a/docs/getting-started.md b/docs/getting-started.md new file mode 100644 index 00000000..bad55622 --- /dev/null +++ b/docs/getting-started.md @@ -0,0 +1 @@ +# Getting Started diff --git a/docs/introduction.md b/docs/introduction.md new file mode 100644 index 00000000..30586245 --- /dev/null +++ b/docs/introduction.md @@ -0,0 +1,3 @@ +# Introduction + +Welcome! This webpage is dedicated to notes and resources for the development team of this game. The sidebar on the left provides links to whatever you may be looking for. \ No newline at end of file