From 08a86e55528f0d517f259b150f9cf294de34571f Mon Sep 17 00:00:00 2001 From: Azzaare Date: Tue, 25 Jun 2024 10:55:32 +0900 Subject: [PATCH] Update ci --- .github/workflows/Documenter.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index aedb9b5..756c502 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -35,12 +35,12 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Setup Node # This is still useful because it caches the node_modules so we don't constantly re-install. You don't technically need this, though. - uses: actions/setup-node@v3 - with: - node-version: 20 - cache: npm # or pnpm / yarn - cache-dependency-path: 'docs/package-lock.json' # this should be a package-lock.json file + # - name: Setup Node # This is still useful because it caches the node_modules so we don't constantly re-install. You don't technically need this, though. + # uses: actions/setup-node@v3 + # with: + # node-version: 20 + # cache: npm # or pnpm / yarn + # cache-dependency-path: 'docs/package-lock.json' # this should be a package-lock.json file - name: Setup Julia uses: julia-actions/setup-julia@v1 - name: Pull Julia cache @@ -48,13 +48,13 @@ jobs: - name: Install documentation dependencies run: julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.update(); Pkg.precompile(); Pkg.status()' # run: julia --project=docs -e 'using Pkg; pkg"dev ."; Pkg.instantiate(); Pkg.precompile(); Pkg.status()' - - name: Instantiate NPM - run: cd docs/; npm i; cd .. + # - name: Instantiate NPM + # run: cd docs/; npm i; cd .. #- name: Creating new mds from src - name: Build and deploy docs uses: julia-actions/julia-docdeploy@v1 - with: - install-package: false + # with: + # install-package: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key