Skip to content

Commit 5604ad5

Browse files
authored
fix: installation of zola in deploy.yml
1 parent 900390f commit 5604ad5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
steps:
2828
- name: Install Zola
2929
run: |
30-
wget -O "https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz" \
31-
&& sudo tar xzf - -C /usr/local/bin
30+
wget -O ${{ runner.temp }}/zola.tar.xz "https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz" \
31+
&& sudo tar xzf zola.tar.xz -C /usr/local/bin
3232
- name: Checkout
3333
uses: actions/checkout@v4
3434
- name: Setup Pages

0 commit comments

Comments
 (0)