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 c4ae7f4 commit 454c559Copy full SHA for 454c559
.github/workflows/jekyll.yml
@@ -0,0 +1,36 @@
1
+name: GitHub Pages Build and Deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main # or your default branch name
7
+ pull_request:
8
9
+ - main
10
11
+jobs:
12
+ github-pages:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout Repository
17
+ uses: actions/checkout@v2
18
19
+ - name: Setup Ruby
20
+ uses: ruby/setup-ruby@v1
21
+ with:
22
+ ruby-version: 2.7 # You can change this to your desired Ruby version
23
24
+ - name: Install Dependencies
25
+ run: |
26
+ gem install bundler
27
+ bundle install
28
29
+ - name: Build Jekyll Site
30
+ run: bundle exec jekyll build
31
32
+ - name: Deploy to GitHub Pages
33
+ uses: peaceiris/actions-gh-pages@v3
34
35
+ github_token: ${{ secrets.GITHUB_TOKEN }}
36
+ publish_dir: ./_site
0 commit comments