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 0e1740b commit 366838bCopy full SHA for 366838b
.github/workflows/deploy.yml
@@ -0,0 +1,22 @@
1
+name: Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+jobs:
7
+ deploy:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Set up Ruby
12
+ uses: ruby/setup-ruby@v1
13
+ with:
14
+ ruby-version: 3.3
15
+ bundler-cache: true
16
+ - name: Jekyll Build
17
+ run: bundle exec jekyll build
18
+ - name: Deploy
19
+ uses: peaceiris/actions-gh-pages@v4
20
21
+ personal_token: ${{ secrets.GITHUB_TOKEN }}
22
+ publish_dir: ./_site
.github/workflows/gh-pages.yml
0 commit comments