File tree 5 files changed +19
-19
lines changed
5 files changed +19
-19
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,10 +13,16 @@ jobs:
13
13
env :
14
14
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
15
16
- - uses : actions/checkout@v1
16
+ - uses : actions/checkout@v2
17
17
18
- - name : Build
19
- uses : ./.github/actions/middleman-build
18
+ - name : Setup ruby
19
+ uses : ruby/setup-ruby@v1
20
+ with :
21
+ bundler-cache : true
22
+ - name : Install ruby dependencies
23
+ run : bundle install
24
+ - name : Bulid with middleman
25
+ run : middleman build
20
26
21
27
- name : Deploy
22
28
run : |
Original file line number Diff line number Diff line change 7
7
build :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - run : echo $GITHUB_TOKEN | docker login --username $GITHUB_ACTOR --password-stdin docker.pkg.github.com
11
- env :
12
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
13
- - uses : actions/checkout@v1
10
+ - uses : actions/checkout@v2
14
11
15
- - name : Build
16
- uses : ./.github/actions/middleman-build
12
+ - name : Setup ruby
13
+ uses : ruby/setup-ruby@v1
14
+ with :
15
+ bundler-cache : true
16
+ - name : Install ruby dependencies
17
+ run : bundle install
18
+ - name : Bulid with middleman
19
+ run : middleman build
Original file line number Diff line number Diff line change
1
+ 2.6.5
You can’t perform that action at this time.
0 commit comments