Skip to content

Commit

Permalink
Start to build out GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mayo committed Jun 4, 2024
1 parent 8da4b2f commit 4313a70
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build site with Zola

on:
push:
#paths-ignore:
branches:
- public-zola

concurrency:
group: site-build-${{ github.ref_name }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Zola environment
uses: taiki-e/install-action@v2
with:
tool: zola
- name: Build site
run: make build

0 comments on commit 4313a70

Please sign in to comment.