File tree Expand file tree Collapse file tree 1 file changed +12
-17
lines changed Expand file tree Collapse file tree 1 file changed +12
-17
lines changed Original file line number Diff line number Diff line change @@ -27,30 +27,25 @@ jobs:
27
27
build :
28
28
runs-on : ubuntu-latest
29
29
steps :
30
- - name : Checkout repository
31
- uses : actions/checkout@v3
32
-
33
- - name : Setup Ruby
34
- uses : ruby/setup-ruby@v1
35
- with :
36
- ruby-version : ' 3.1'
37
- bundler-cache : true
38
-
39
- - name : Checkout repository
40
- uses : actions/checkout@v3
41
-
30
+ - name : Checkout
31
+ uses : actions/checkout@v4
42
32
- name : Setup Ruby
43
33
uses : ruby/setup-ruby@v1
44
34
with :
45
35
ruby-version : ' 3.1'
46
36
bundler-cache : true
47
37
48
38
- name : Install dependencies
49
- run : bundle install
50
-
51
- - name : Build site
52
- run : bundle exec jekyll build
53
-
39
+ run : bundle install
40
+ - name : Setup Pages
41
+ uses : actions/configure-pages@v5
42
+ - name : Build with Jekyll
43
+ uses : actions/jekyll-build-pages@v1
44
+ with :
45
+ source : ./
46
+ destination : ./_site
47
+ - name : Upload artifact
48
+ uses : actions/upload-pages-artifact@v3
54
49
55
50
# Deployment job
56
51
deploy :
You can’t perform that action at this time.
0 commit comments