Revert "Use upcoming zola release on Github Actions"

This reverts commit c33c08392c.
This commit is contained in:
Philipp Oppermann
2020-02-17 10:23:08 +01:00
parent bccfef77c9
commit 9547b0fc72

View File

@@ -19,8 +19,8 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: 'Clone Zola'
run: git clone https://github.com/getzola/zola.git --branch next
- name: 'Download Zola'
run: curl -sL https://github.com/getzola/zola/releases/download/v0.9.0/zola-v0.9.0-x86_64-unknown-linux-gnu.tar.gz | tar zxv
- name: "Install Python Tools"
run: python -m pip install --upgrade pip setuptools wheel
- name: 'Install Python Libraries'
@@ -31,7 +31,7 @@ jobs:
run: python before_build.py
working-directory: "blog"
- name: "Build Site"
run: cargo run --manifest-path=../zola/Cargo.toml -- build
run: ../zola build
working-directory: "blog"
- name: Upload Generated Site
@@ -47,11 +47,11 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: 'Clone Zola'
run: git clone https://github.com/getzola/zola.git --branch next
- name: 'Download Zola'
run: curl -sL https://github.com/getzola/zola/releases/download/v0.9.0/zola-v0.9.0-x86_64-unknown-linux-gnu.tar.gz | tar zxv
- name: "Run zola check"
run: cargo run --manifest-path=../zola/Cargo.toml -- check
run: ../zola check
working-directory: "blog"
continue-on-error: true