website/.github/workflows/check.yml
Alexander Borsuk 072ba63498 Reverted back to using Cloudflare builds and deployments instead of Github actions
Cloudflare finally upgraded the build image and it is able to run the latest Zola versions

Signed-off-by: Alexander Borsuk <me@alex.bio>
2023-04-23 11:42:18 +03:00

22 lines
497 B
YAML

name: Check site validity
env:
ZOLA_VERSION: 0.17.2
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
environment: production
name: Check Zola build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build with Zola
run: |
wget -O zola.tar.gz -c https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz
tar -zxvf zola.tar.gz
./zola build