Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/ExportNotebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:

- name: 🙌 Install Julia
uses: julia-actions/setup-julia@v1
with:
version: "1.8"

- name: ⏱ Cache notebook states
uses: actions/cache@v2
Expand All @@ -43,8 +41,8 @@ jobs:
run: julia --project=pluto-deployment-environment -e '
import Pkg;
Pkg.instantiate();

include("./generate.jl")'
using PlutoPages;
PlutoPages.generate(pwd())'


- name: 📰 Upload site generation report
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"label": "PlutoPages: run development server",
"type": "shell",
"command": "julia develop.jl",
"command": "julia --project=pluto-deployment-environment -e 'using PlutoPages; PlutoPages.develop(pwd())'",
"group": "build"
}
]
Expand Down
Loading