File tree Expand file tree Collapse file tree 1 file changed +15
-13
lines changed Expand file tree Collapse file tree 1 file changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,19 @@ jobs:
13
13
build :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v4
17
- with :
18
- fetch-depth : 0
19
- - uses : quarto-dev/quarto-actions/setup@v2
20
- - run : |
21
- pip install nbformat
22
- python auto_add_date.py posts/*.ipynb
23
- - run : quarto render
24
- - uses : actions/upload-pages-artifact@v3
25
- with :
26
- path : ' _site'
16
+ # fetch-depth required by auto_add_date.py
17
+ - uses : actions/checkout@v4
18
+ with :
19
+ fetch-depth : 0
20
+ - uses : quarto-dev/quarto-actions/setup@v2
21
+ - uses : actions/setup-python@v5
22
+ - run : |
23
+ pip install nbformat
24
+ python auto_add_date.py posts/*.ipynb
25
+ - run : quarto render
26
+ - uses : actions/upload-pages-artifact@v3
27
+ with :
28
+ path : " _site"
27
29
28
30
deploy :
29
31
needs : build
40
42
runs-on : ubuntu-latest
41
43
42
44
steps :
43
- - uses : actions/configure-pages@v4
44
- - uses : actions/deploy-pages@v4
45
+ - uses : actions/configure-pages@v4
46
+ - uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments