We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8feab62 commit 8715507Copy full SHA for 8715507
2 files changed
.github/actions/zola-build/action.yml
@@ -0,0 +1,7 @@
1
+name: zola-build
2
+description: build website with zola
3
+runs:
4
+ using: docker
5
+ image: docker://ghcr.io/getzola/zola:v0.22.1
6
+ args:
7
+ - build
.github/workflows/ci.yml
@@ -0,0 +1,11 @@
+name: Build
+on:
+ pull_request:
+ branches:
+ - "master"
+jobs:
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v6
11
+ - uses: ./.github/actions/zola-build
0 commit comments