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