File tree 2 files changed +19
-17
lines changed
2 files changed +19
-17
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
pull_request :
6
6
schedule :
7
- - cron : ' 0 0 * * MON' # Weekly, Mondays at 00:00
7
+ - cron : " 0 0 * * MON" # Weekly, Mondays at 00:00
8
8
9
9
jobs :
10
10
zola :
11
11
runs-on : ubuntu-latest
12
12
env :
13
13
BASE_URL : https://github.com/getzola/zola/releases/download
14
- VERS : v0.15.3
14
+ VERS : v0.19.0
15
15
ARCH : x86_64-unknown-linux-gnu
16
16
# https://github.com/crazy-max/ghaction-github-pages/issues/1#issuecomment-623202206
17
17
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18
18
steps :
19
- - uses : actions/checkout@v3
20
- - name : Install Zola
21
- run : curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
22
- - run : ./zola --version
23
- - run : ./zola build
24
- - name : Deploy
25
- if : github.ref == 'refs/heads/master'
26
- uses : crazy-max/ghaction-github-pages@v3
27
- with :
28
- build_dir : public
19
+ - uses : actions/checkout@v3
20
+ - name : Install Zola
21
+ run : curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
22
+ - run : ./zola --version
23
+ - run : ./zola build
24
+ - name : Deploy
25
+ if : github.ref == 'refs/heads/master'
26
+ uses : crazy-max/ghaction-github-pages@v3
27
+ with :
28
+ build_dir : public
29
29
30
30
fmt :
31
31
runs-on : ubuntu-latest
32
32
steps :
33
- - uses : actions/checkout@v3
34
- - run : pip3 install pytoml
35
- - run : find . -name data.toml | xargs ./sort_data.py
36
- - run : if [[ `git status --porcelain` ]]; then git diff && exit 1; fi
33
+ - uses : actions/checkout@v3
34
+ - run : pip3 install pytoml
35
+ - run : find . -name data.toml | xargs ./sort_data.py
36
+ - run : if [[ `git status --porcelain` ]]; then git diff && exit 1; fi
Original file line number Diff line number Diff line change @@ -7,9 +7,11 @@ base_url = "https://arewegameyet.rs/"
7
7
# Whether to automatically compile all Sass files in the sass directory
8
8
compile_sass = true
9
9
10
+ # Configure the Markdown rendering
11
+ [markdown ]
10
12
# Whether to do syntax highlighting
11
- # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
12
13
highlight_code = true
14
+ highlight_theme = " base16-ocean-dark"
13
15
14
16
# Whether to build a search index to be used later on by a JavaScript library
15
17
build_search_index = true
You can’t perform that action at this time.
0 commit comments