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 2d2206d commit 0554edbCopy full SHA for 0554edb
.github/workflows/pages.yml
@@ -0,0 +1,36 @@
1
+name: Build and Deploy
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
7
+permissions:
8
+ contents: read
9
+ pages: write
10
+ id-token: write
11
12
+jobs:
13
+ deploy:
14
+ runs-on: ubuntu-latest
15
+ environment:
16
+ name: github-pages
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
21
+ - name: Setup Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: 3.2
25
26
+ - name: Install dependencies
27
+ run: bundle install
28
29
+ - name: Build site
30
+ run: bundle exec jekyll build
31
32
+ - name: Deploy
33
+ uses: peaceiris/actions-gh-pages@v3
34
35
+ github_token: ${{ secrets.GITHUB_TOKEN }}
36
+ publish_dir: ./_site
0 commit comments