We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3257635 commit f4c44bdCopy full SHA for f4c44bd
4 files changed
.github/workflows/jekyll.yml
@@ -33,11 +33,12 @@ jobs:
33
with:
34
ruby-version: '3.1'
35
bundler-cache: true
36
+ - name: Install dependencies
37
+ run: bundle install
38
- name: Setup Pages
39
uses: actions/configure-pages@v4
40
- name: Build with Jekyll
- run: |
- bundle exec jekyll build --baseurl "${{ steps.determine-url.outputs.base_url }}"
41
+ run: bundle exec jekyll build
42
env:
43
JEKYLL_ENV: production
44
- name: Upload artifact
Gemfile
@@ -1,4 +1,6 @@
1
source "https://rubygems.org"
2
3
-# GitHub Pages compatible Jekyll setup
4
-gem "github-pages", group: :jekyll_plugins
+# Jekyll setup for GitHub Actions
+gem "jekyll", "~> 4.3.0"
5
+gem "jekyll-feed", "~> 0.12"
6
+gem "jekyll-sitemap"
0 commit comments