File tree 10 files changed +507
-116
lines changed
10 files changed +507
-116
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
build :
10
-
11
10
runs-on : ubuntu-latest
12
-
13
11
steps :
14
- - uses : actions/checkout@v1
12
+ - uses : actions/checkout@v3
15
13
- name : Set up Node.js
16
- uses : actions/setup-node@v1
14
+ uses : actions/setup-node@v3
17
15
with :
18
- node-version : ' 9.8 '
16
+ node-version : 16.13.2
19
17
- name : Install node dependencies
20
18
run : |
21
19
npm install
22
- - name : Set up Ruby 2.5.9
23
- uses : actions/setup-ruby@v1
20
+ yarn install
21
+ - name : Set up Ruby 2.7
22
+ uses : ruby/setup-ruby@v1
24
23
with :
25
- ruby-version : ' 2.5.9'
24
+ ruby-version : 2.7.4
25
+ bundler-cache : true
26
26
- name : Install ruby dependencies
27
27
run : |
28
- gem install bundler -v 2.2.17
28
+ gem install bundler -v 2.3.13
29
29
bundle install
30
30
- name : Initialize & update hub submodule
31
31
run : |
32
32
git submodule deinit -f . && git submodule update --init --recursive
33
- ./_devel/update_hub_submodule.sh
34
- pushd _hub
35
- rm -R `ls -1 -d */`
36
- rm -f README.md
37
- popd
38
- - name : Update submodules
39
- run : |
40
33
git submodule update --remote
41
34
- name : Build Jekyll site
42
35
run : |
52
45
git add .
53
46
git commit -m "Rebuild"
54
47
git push --force $remote_repo master:$remote_branch > /dev/null 2>&1
55
- echo "Done"
48
+ echo "Done"
Original file line number Diff line number Diff line change 1
- 9.8.0
1
+ v16.13.2
Original file line number Diff line number Diff line change 1
- 2.5.9
1
+ 2.7.4
Original file line number Diff line number Diff line change 1
1
source "https://rubygems.org"
2
- ruby "2.5.9 "
2
+ ruby "2.7.4 "
3
3
4
4
group :jekyll_plugins do
5
5
gem "github-pages"
6
6
gem "jekyll-paginate-v2"
7
- gem 'jekyll-autoprefixer'
7
+ gem "jekyll-autoprefixer"
8
+ gem "execjs" , "2.7.0"
8
9
end
You can’t perform that action at this time.
0 commit comments