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 1878bfa commit 2d73d5eCopy full SHA for 2d73d5e
.github/workflows/deploy.yml
@@ -0,0 +1,36 @@
1
+name: Deploy Quartz site to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - v4
7
8
+permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
13
+concurrency:
14
+ group: "pages"
15
+ cancel-in-progress: false
16
17
+jobs:
18
+ build:
19
+ runs-on: ubuntu-22.04
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ with:
23
+ fetch-depth: 0 # Fetch all history for git info
24
+ - uses: actions/setup-node@v4
25
26
+ node-version: 22
27
+ - name: Install Dependencies
28
+ run: npm ci
29
+ - name: Build Quartz
30
+ run: npx quartz build
31
+ - name: Upload artifact
32
+ uses: actions/upload-pages-artifact@v3
33
34
+ path: public
35
36
0 commit comments