We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea469dd commit 0a600b8Copy full SHA for 0a600b8
.github/workflows/deploy.yml
@@ -0,0 +1,16 @@
1
+name: Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+
7
+jobs:
8
+ deploy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v6
12
+ - name: Build and deploy
13
+ uses: shalzz/zola-deploy-action@v0.21.0
14
+ env:
15
+ PAGES_BRANCH: gh-pages
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/main.yml
.github/workflows/pr.yml
@@ -0,0 +1,13 @@
+name: Build
+on: pull_request
+ build:
+ - name: Build
+ BUILD_ONLY: true
+ BUILD_FLAGS: --drafts
0 commit comments