File tree Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -3,19 +3,21 @@ description: 'Run bootstrap.sh'
3
3
runs :
4
4
using : " composite"
5
5
steps :
6
+ - run : echo "IMAGE=${ImageOS}-${ImageVersion}" >> $GITHUB_ENV
7
+ shell : bash
6
8
- name : Cache RubyGems
7
9
uses : actions/cache@v2
8
10
id : rubygem-cache
9
11
with :
10
12
path : vendor/bundle
11
- key : ${{ runner.os }}-${{ env.ImageVersion }}-gem-${{ hashFiles('**/Gemfile.lock') }}
12
- restore-keys : ${{ runner.os }}-${{ env.ImageVersion }}-gem-
13
+ key : ${{ env.IMAGE }}-gem-${{ hashFiles('**/Gemfile.lock') }}
14
+ restore-keys : ${{ env.IMAGE }}-gem-
13
15
- name : Cache Mint
14
16
uses : actions/cache@v2
15
17
id : mint-cache
16
18
with :
17
19
path : ~/.mint
18
- key : ${{ runner.os }}-${{ env.ImageVersion }}-mint-${{ hashFiles('**/Mintfile') }}
19
- restore-keys : ${{ runner.os }}-${{ env.ImageVersion }}-mint-
20
+ key : ${{ env.IMAGE }}-mint-${{ hashFiles('**/Mintfile') }}
21
+ restore-keys : ${{ env.IMAGE }}-mint-
20
22
- run : ./Scripts/bootstrap.sh
21
23
shell : bash
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 24
24
runs-on : macos-12
25
25
steps :
26
26
- uses : actions/checkout@v1
27
- - uses : ./.github/actions/set-build-image-var
28
27
- uses : ./.github/actions/bootstrap
29
28
- name : Run Danger
30
29
run : bundle exec danger
38
37
runs-on : macos-12
39
38
steps :
40
39
- uses : actions/checkout@v1
41
- - uses : ./.github/actions/set-build-image-var
42
40
43
41
with :
44
42
python-version : 3.8
81
79
runs-on : macos-12
82
80
steps :
83
81
- uses : actions/checkout@v1
84
- - uses : ./.github/actions/set-build-image-var
85
82
- uses : ./.github/actions/bootstrap
86
83
- name : Build Demo App
87
84
run : bundle exec fastlane build_demo
You can’t perform that action at this time.
0 commit comments