Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy Jekyll site to Pages

Check warning on line 1 in .github/workflows/jekyll.yml

View workflow job for this annotation

GitHub Actions / Lint

1:1 [document-start] missing document start "---"

Check warning on line 1 in .github/workflows/jekyll.yml

View workflow job for this annotation

GitHub Actions / Lint

1:1 [document-start] missing document start "---"

on:
push:
Expand All @@ -24,11 +24,16 @@
- name: Setup Pages
uses: actions/configure-pages@v5

- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
source: ./
destination: ./_site
ruby-version: "3.3"
bundler-cache: true

- name: Build with Jekyll
run: bundle exec jekyll build --destination ./_site
env:
JEKYLL_ENV: production

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
Loading