File tree 5 files changed +19
-23
lines changed
5 files changed +19
-23
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
build :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - run : echo $GITHUB_TOKEN | docker login --username $GITHUB_ACTOR --password-stdin docker.pkg.github.com
13
- env :
14
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
-
16
- - uses : actions/checkout@v1
12
+ - uses : actions/checkout@v2
17
13
18
- - name : Build
19
- uses : ./.github/actions/middleman-build
14
+ - name : Setup ruby
15
+ uses : ruby/setup-ruby@v1
16
+ with :
17
+ bundler-cache : true
18
+ - name : Install ruby dependencies
19
+ run : bundle install
20
+ - name : Bulid with middleman
21
+ run : bundle exec middleman build
20
22
21
23
- name : Deploy
22
24
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 : bundle exec 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