From b991afebac5585eb5e1c184625002c04b2042480 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 21 Jun 2024 11:50:59 +0200 Subject: [PATCH] Update to zola v0.19 --- .github/workflows/blog.yml | 2 +- .github/workflows/check-links.yml | 2 +- blog/config.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/blog.yml b/.github/workflows/blog.yml index 86ddfa2c2..c4b9c53e4 100644 --- a/.github/workflows/blog.yml +++ b/.github/workflows/blog.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v1 - name: 'Download Zola' - run: curl -sL https://github.com/getzola/zola/releases/download/v0.17.2/zola-v0.17.2-x86_64-unknown-linux-gnu.tar.gz | tar zxv + run: curl -sL https://github.com/getzola/zola/releases/download/v0.19.0/zola-v0.19.0-x86_64-unknown-linux-gnu.tar.gz | tar zxv - name: 'Install Python Libraries' run: python -m pip install --user -r requirements.txt working-directory: "blog" diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 70e8bb5df..ccf94dbe9 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v1 - name: "Download Zola" - run: curl -sL https://github.com/getzola/zola/releases/download/v0.17.2/zola-v0.17.2-x86_64-unknown-linux-gnu.tar.gz | tar zxv + run: curl -sL https://github.com/getzola/zola/releases/download/v0.19.0/zola-v0.19.0-x86_64-unknown-linux-gnu.tar.gz | tar zxv - name: "Run zola check" run: ../zola check diff --git a/blog/config.toml b/blog/config.toml index 9d5426671..680206950 100644 --- a/blog/config.toml +++ b/blog/config.toml @@ -2,8 +2,8 @@ base_url = "https://os.phil-opp.com" title = "Writing an OS in Rust" description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." -generate_feed = true -feed_filename = "rss.xml" +generate_feeds = true +feed_filenames = ["rss.xml"] compile_sass = true minify_html = false