From d050db6cebb7f483f9888d1336365a853cce0641 Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 18 Feb 2024 19:25:03 +0900 Subject: [PATCH] add `Docs.yml` --- .github/workflows/Docs.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/Docs.yml diff --git a/.github/workflows/Docs.yml b/.github/workflows/Docs.yml new file mode 100644 index 00000000..fd88629f --- /dev/null +++ b/.github/workflows/Docs.yml @@ -0,0 +1,20 @@ +name: Documenter +on: + push: + branches: [master] + tags: [v*] + pull_request: + +jobs: + Documenter: + permissions: + contents: write + statuses: write + name: Documentation + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-docdeploy@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}