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 272203b commit 1f61590Copy full SHA for 1f61590
.github/workflows/deploy.yml
@@ -0,0 +1,32 @@
1
+name: Build and Deploy Jekyll
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build-deploy:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout Code
14
+ uses: actions/checkout@v3
15
16
+ - name: Set up Ruby
17
+ uses: ruby/setup-ruby@v1
18
+ with:
19
+ ruby-version: 3.1
20
+ bundler-cache: true
21
22
+ - name: Install Dependencies
23
+ run: bundle install
24
25
+ - name: Build Site
26
+ run: bundle exec jekyll build
27
28
+ - name: Deploy to GitHub Pages
29
+ uses: peaceiris/actions-gh-pages@v3
30
31
+ github_token: ${{ secrets.GITHUB_TOKEN }}
32
+ publish_dir: ./_site
0 commit comments