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.
2 parents 7fcf419 + eced428 commit e9671fdCopy full SHA for e9671fd
.github/workflows/build.yml
@@ -0,0 +1,39 @@
1
+name: Build and Deploy Jekyll site
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - gh-pages
7
8
+permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: build with jekyll
21
+ run: |
22
+ sh ./_scripts/docker_jekyll jekyll build
23
24
+ - name: Upload artifact
25
+ uses: actions/upload-pages-artifact@v3
26
+ with:
27
+ path: _site
28
29
+ deploy:
30
+ needs:
31
+ - build
32
+ environment:
33
+ name: github-pages
34
+ url: ${{ steps.deployment.outputs.page_url }}
35
36
37
+ - name: Deploy to GitHub Pages
38
+ id: deployment
39
+ uses: actions/deploy-pages@v4
0 commit comments