Skip to content

Commit

Permalink
Ensure zola is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Apr 19, 2024
1 parent 711d20b commit f2b5fe5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
shardTotal: [4]
steps:
- uses: actions/checkout@v4
- name: Download Zola
run: |
version='v0.17.2'
archive="zola-${version}-x86_64-unknown-linux-gnu.tar.gz"
curl -L "https://github.com/getzola/zola/releases/download/${version}/${archive}" -o "$archive"
tar xf "$archive"
- uses: actions/setup-node@v4
with:
node-version: lts/*
Expand Down

0 comments on commit f2b5fe5

Please sign in to comment.