File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,14 @@ jobs:
19
19
version : ' 1.10'
20
20
- name : Install dependencies
21
21
run : |
22
- julia -e 'ENV["PYTHON"]=ENV["CONDA"] * "/envs/rms_env/bin/python"; using Pkg; Pkg.add("PyCall"); Pkg.build("PyCall")'
23
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();'
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");'
24
25
- name : Build and deploy
25
26
env :
26
27
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
27
28
DOCUMENTER_DEBUG : true
28
- run : julia --color=yes --project=docs docs/make.jl
29
+ run : |
30
+ current_path=${{ github.workspace }}
31
+ export JULIA_CONDAPKG_ENV="$current_path/rms_env"
32
+ julia --color=yes --project=docs docs/make.jl
You can’t perform that action at this time.
0 commit comments