Skip to content

Commit

Permalink
fix ci 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Azzaare committed Jun 25, 2024
1 parent d6c7617 commit 6ece912
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ 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
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()'
# run: cd docs/; npm i; cd ..
#- name: Creating new mds from src
- name: Install npm
run: cd docs/; npm i; cd ..
- name: Build and deploy docs
uses: julia-actions/julia-docdeploy@v1
with:
Expand Down

0 comments on commit 6ece912

Please sign in to comment.