File tree Expand file tree Collapse file tree 5 files changed +23
-2
lines changed Expand file tree Collapse file tree 5 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- name : ' Checkout'
12
12
uses : actions/checkout@main
13
+ with :
14
+ submodules : " recursive"
13
15
- uses : actions/setup-node@v4
14
16
with :
15
17
node-version : 20
18
+ - run : |
19
+ sudo apt-get update && sudo apt-get install -y wget git
20
+ - run : |
21
+ wget -q -O - \
22
+ "https://github.com/getzola/zola/releases/download/v0.19.1/zola-v0.19.1-x86_64-unknown-linux-gnu.tar.gz" \
23
+ | sudo tar xzf - -C /usr/local/bin
24
+
16
25
- run : npm install
17
26
- run : npm run abridge
18
27
- name : ' Build only'
28
37
steps :
29
38
- name : ' Checkout'
30
39
uses : actions/checkout@main
40
+ with :
41
+ submodules : " recursive"
31
42
- uses : actions/setup-node@v4
32
43
with :
33
44
node-version : 20
45
+ - run : |
46
+ sudo apt-get update && sudo apt-get install -y wget git
47
+ - run : |
48
+ wget -q -O - \
49
+ "https://github.com/getzola/zola/releases/download/v0.19.1/zola-v0.19.1-x86_64-unknown-linux-gnu.tar.gz" \
50
+ | sudo tar xzf - -C /usr/local/bin
34
51
- run : npm install
35
52
- run : npm run abridge
36
53
- name : ' Build and deploy'
Original file line number Diff line number Diff line change 1
1
.env
2
2
public
3
- themes
4
3
build
5
4
storage
6
5
node_modules
@@ -12,4 +11,4 @@ static/tinysearch_engine_bg.wasm.d.ts
12
11
static /package.json
13
12
static /js /pagefind. * .pf_meta
14
13
static /js /index
15
- static /js /fragment
14
+ static /js /fragment
Original file line number Diff line number Diff line change
1
+ [submodule "themes/abridge "]
2
+ path = themes/abridge
3
+ url = https://github.com/jieiku/abridge.git
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ build_search_index = true
15
15
generate_feeds = true
16
16
taxonomies = [
17
17
{name = " categories" , feed = true },
18
+ {name = " tags" },
18
19
{name = " authors" }
19
20
]
20
21
You can’t perform that action at this time.
0 commit comments