File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : ci
2
2
on :
3
3
push :
4
- branches : ' *'
4
+ branches : [ '*' ]
5
5
pull_request :
6
6
jobs :
7
7
build :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : actions/checkout@v2
11
- - uses : actions/setup-ruby@v1
12
- - run : bundle install
11
+ - uses : ruby/setup-ruby@v1
12
+ with :
13
+ ruby-version : 2.7.2
14
+ bundler-cache : true
13
15
- run : bundle exec jekyll build
Original file line number Diff line number Diff line change 1
1
name : gh-pages
2
2
on :
3
3
push :
4
- branches : master
4
+ branches : [ master ]
5
5
jobs :
6
6
deploy :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- uses : actions/checkout@v2
10
- - uses : actions/setup-ruby@v1
11
- - run : bundle install
10
+ - uses : ruby/setup-ruby@v1
11
+ with :
12
+ ruby-version : 2.7.2
13
+ bundler-cache : true
12
14
- run : bundle exec jekyll build
13
15
- id : cname
14
16
run : |
You can’t perform that action at this time.
0 commit comments