Skip to content

Commit

Permalink
Put the zola binary in PATH for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos committed Aug 12, 2024
1 parent b737ed2 commit 4255267
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
sudo apt-get update && sudo apt-get install -y wget git
- run: |
wget -q -O - \
"https://github.com/getzola/zola/releases/download/v0.19.1/zola-v0.19.1-x86_64-unknown-linux-gnu.tar.gz" \
| sudo tar xzf - -C /usr/local/bin
- run: npm install
- run: npm run abridge
- name: 'Build only'
Expand All @@ -31,6 +38,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
sudo apt-get update && sudo apt-get install -y wget git
- run: |
wget -q -O - \
"https://github.com/getzola/zola/releases/download/v0.19.1/zola-v0.19.1-x86_64-unknown-linux-gnu.tar.gz" \
| sudo tar xzf - -C /usr/local/bin
- run: npm install
- run: npm run abridge
- name: 'Build and deploy'
Expand Down

0 comments on commit 4255267

Please sign in to comment.