From b01e06a0b2ea75bdab9bfbc0a2a728bd427e32cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Tue, 21 May 2024 09:21:51 +0200 Subject: [PATCH] Fix doc build --- .github/workflows/documentation.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 985d6b0..7832ef0 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -14,15 +14,15 @@ jobs: with: # Build documentation on latest release version: '1' - - name: dev - shell: julia --project=@. {0} + - name: Install dependencies + shell: julia --project=docs/ {0} run: | using Pkg Pkg.add([ PackageSpec(name="StarAlgebras", rev="mk/non_monomial_basis"), + PackageSpec(path=pwd()), ]) - - name: Install dependencies - run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' + Pkg.instantiate() - name: Build and deploy env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token