From 3a32ff097ffa37290d72cd344ec86009fa88dd7d Mon Sep 17 00:00:00 2001 From: Olivier Cots Date: Wed, 28 Aug 2024 21:49:57 +0200 Subject: [PATCH] add doc --- .github/workflows/Documentation.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/Documentation.yml diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml new file mode 100644 index 0000000..4c57553 --- /dev/null +++ b/.github/workflows/Documentation.yml @@ -0,0 +1,25 @@ +# [.github/workflows/Documentation.yml] +name: Documentation + +on: + push: + branches: + - main + tags: '*' + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@latest + - uses: julia-actions/julia-buildpkg@latest + - name: Install dependencies + run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' + - name: Build and deploy + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token + DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key + GKSwstype: 100 # To make GitHub Action work, disable showing a plot window with the GR backend of the Plots package + run: julia --project=docs/ -e 'ENV["GKSwstype"]="nul" ; include("docs/make.jl")'