File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 5
5
branches : ["main"]
6
6
workflow_dispatch :
7
7
8
-
9
8
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
10
9
permissions :
11
10
contents : " read"
12
11
pages : " write"
13
12
id-token : " write"
14
13
15
-
16
14
# Allow one concurrent deployment
17
15
concurrency :
18
16
group : " pages"
19
17
cancel-in-progress : true
20
18
21
-
22
19
# Default to bash in login mode
23
- # https://github.com/mamba-org/provision-with-micromamba#IMPORTANT
24
20
defaults :
25
21
run :
26
22
shell : " bash -l {0}"
27
23
28
-
29
24
jobs :
30
25
build :
31
26
runs-on : " ubuntu-latest"
32
27
permissions :
33
28
contents : " write"
34
29
steps :
35
30
- name : " Check out repository"
36
- uses : " actions/checkout@v3 "
31
+ uses : " actions/checkout@v4 "
37
32
38
33
- name : " Install Conda environment"
39
34
uses : " mamba-org/setup-micromamba@v1"
45
40
run : " quarto render ."
46
41
47
42
- name : " Upload artifact"
48
- uses : " actions/upload-pages-artifact@v1 "
43
+ uses : " actions/upload-pages-artifact@v2 "
49
44
with :
50
45
path : " ./_site"
51
46
59
54
steps :
60
55
- name : " Deploy to GitHub Pages"
61
56
id : " deployment"
62
- uses : " actions/deploy-pages@v1"
57
+ uses : " actions/deploy-pages@v2"
58
+
You can’t perform that action at this time.
0 commit comments