Skip to content

Commit 1cf1145

Browse files
committed
Switch to upstream Zola
All of the patches we needed for the migration have been merged upstream (with some modifications, hence the `sort_by = "permalink"` diff).
1 parent 0252bef commit 1cf1145

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
3434

3535
- name: Install Zola
36-
run: cargo install --locked --git https://github.com/senekor/zola --rev 79410eea82f837e4de9b1e4c3905287060b69255
36+
run: cargo install --locked --git https://github.com/getzola/zola --rev 4cc4dedff832c8fdccd3185d19696435141998b3
3737
- run: zola build
3838
- run: cp CNAME ./public/
3939
- run: touch public/.nojekyll

.github/workflows/snapshot_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- run: rustup override set ${{ env.RUST_VERSION }}
1616
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
1717
- name: Install Zola
18-
run: cargo install --locked --git https://github.com/senekor/zola --rev 79410eea82f837e4de9b1e4c3905287060b69255
18+
run: cargo install --locked --git https://github.com/getzola/zola --rev 4cc4dedff832c8fdccd3185d19696435141998b3
1919

2020
- run: git fetch --depth 2
2121
- run: git checkout origin/master

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ It uses [Zola](https://www.getzola.org/) and is deployed to GitHub Pages via Git
1111
To serve the site locally, first install Zola: (takes a couple minutes)
1212

1313
```sh
14-
# using a fork because we rely on a few patches that haven't landed yet
15-
cargo install --locked --git https://github.com/senekor/zola --rev 79410eea82f837e4de9b1e4c3905287060b69255
14+
cargo install --locked --git https://github.com/getzola/zola --rev 4cc4dedff832c8fdccd3185d19696435141998b3
1615
```
1716

1817
Now run `zola serve --open`.

content/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "Rust Blog"
33
description = "Empowering everyone to build reliable and efficient software."
4+
sort_by = "permalink"
45
generate_feeds = true
56
[extra]
67
index_title = "The Rust Programming Language Blog"

content/inside-rust/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "Inside Rust Blog"
33
description = "Want to follow along with Rust development? Curious how you might get involved? Take a look!"
4+
sort_by = "permalink"
45
generate_feeds = true
56
[extra]
67
index_title = 'The "Inside Rust" Blog'

0 commit comments

Comments
 (0)