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/ExportPluto.yaml
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,26 +11,31 @@ concurrency:
11
11
group: pluto-export
12
12
cancel-in-progress: true
13
13
14
+
# This action needs permission to write the exported HTML file to the gh-pages branch.
15
+
permissions:
16
+
contents: write
17
+
# (all other permission fields default to "none")
18
+
14
19
jobs:
15
20
build-and-deploy:
16
21
runs-on: ubuntu-latest
17
22
steps:
18
23
- name: Checkout this repository
19
-
uses: actions/checkout@v3
24
+
uses: actions/checkout@v4
20
25
21
26
- name: Install Julia
22
-
uses: julia-actions/setup-julia@v1
27
+
uses: julia-actions/setup-julia@v2
23
28
with:
24
29
version: "1"# This will automatically pick the latest Julia version
25
30
26
31
- name: Cache Julia artifacts & such
27
-
uses: julia-actions/cache@v1
32
+
uses: julia-actions/cache@v2
28
33
with:
29
34
cache-registries: "true"
30
35
31
36
# We set up a folder that Pluto can use to cache exported notebooks. If the notebook file did not change, then Pluto can take the exported file from cache instead of running the notebook.
0 commit comments