From c5914795f18628991645f9b4c3e0afd5a3bfa268 Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Tue, 15 Dec 2020 02:43:45 -0600 Subject: [PATCH] Build docs on GitHub Actions (#56) --- .github/workflows/Documenter.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/Documenter.yml diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml new file mode 100644 index 0000000..8faa2e2 --- /dev/null +++ b/.github/workflows/Documenter.yml @@ -0,0 +1,18 @@ +name: Documenter +on: + push: + branches: [master] + tags: [v*] + pull_request: + +jobs: + Documenter: + name: Documentation + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/julia-buildpkg@latest + - uses: julia-actions/julia-docdeploy@latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}