You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/documentation.yml
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,14 @@ jobs:
19
19
version: '1.10'
20
20
- name: Install dependencies
21
21
run: |
22
-
julia --project=docs/ -e 'ENV["JULIA_CONDAPKG_ENV"] = abspath("rms_env"); using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.build("ReactionMechanismSimulator");'
22
+
current_path=${{ github.workspace }}
23
+
export JULIA_CONDAPKG_ENV="$current_path/rms_env"
24
+
julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.build("ReactionMechanismSimulator");'
23
25
- name: Build and deploy
24
26
env:
25
27
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
26
28
DOCUMENTER_DEBUG: true
27
-
run: julia --color=yes --project=docs docs/make.jl
0 commit comments