Skip to content

Commit 8f2cf06

Browse files
authored
Merge pull request #1563 from rust-lang/senekor/zola
Migrate to Zola
2 parents 1061e10 + 6aa8671 commit 8f2cf06

File tree

634 files changed

+4130
-6195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

634 files changed

+4130
-6195
lines changed

.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
- run: rustup override set ${{ env.RUST_VERSION }}
3232
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
3333

34-
- run: cargo run
34+
- name: Install Zola
35+
run: cargo install --locked --git https://github.com/senekor/zola --rev 620bf3c46a39b41db30b1e91756a995bbff84d3a
36+
- run: zola build
3537
- run: cp CNAME ./public/
3638
- run: touch public/.nojekyll
3739

.gitignore

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
# generated by MacOS
12
.DS_Store
2-
/target/
3-
**/*.rs.bk
4-
site
5-
public
6-
static/styles/vendor.css
7-
static/styles/app.css
8-
static/styles/fonts.css
9-
static/styles/noscript.css
10-
src/snapshots
3+
4+
# cargo output
5+
/target
6+
7+
# zola output (site is deprecated, but people might still have them lying around)
8+
/site
9+
/public
10+
11+
# these are old compiled sass files, people might still have them lying arouynd
12+
/static/styles/vendor.css
13+
/static/styles/app.css
14+
/static/styles/fonts.css
15+
/static/styles/noscript.css
16+
17+
/snapshot/src/snapshots

0 commit comments

Comments
 (0)