diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index fa82c2b..d5f1559 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -35,26 +35,15 @@ 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 Julia uses: julia-actions/setup-julia@v1 - name: Pull Julia cache uses: julia-actions/cache@v1 - 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: Creating new mds from src - name: Build and deploy docs uses: julia-actions/julia-docdeploy@v1 - 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