Commit 417c0ca 1 parent 25dd7b7 commit 417c0ca Copy full SHA for 417c0ca
File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,20 @@ jobs:
10
10
deploy :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
with :
15
15
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
20
27
- name : deploy website
21
28
shell : bash
22
29
env :
You can’t perform that action at this time.
0 commit comments