Skip to content

Commit 417c0ca

Browse files
committed
fix github action for real maybe?
1 parent 25dd7b7 commit 417c0ca

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/jekyll-deploy.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,20 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
submodules: recursive
16-
- name: Setup Pages
17-
uses: actions/configure-pages@v3
18-
- name: Build
19-
uses: actions/jekyll-build-pages@v1
16+
- name: Setup Ruby
17+
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
18+
with:
19+
ruby-version: '3.1' # Not needed with a .ruby-version file
20+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
21+
cache-version: 0 # Increment this number if you need to re-download cached gems
22+
- name: Build with Jekyll
23+
# Outputs to the './_site' directory by default
24+
run: bundle exec jekyll build
25+
env:
26+
JEKYLL_ENV: production
2027
- name: deploy website
2128
shell: bash
2229
env:

0 commit comments

Comments
 (0)