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'
33runs :
44 using : " composite"
55 steps :
6+ - run : echo "IMAGE=${ImageOS}-${ImageVersion}" >> $GITHUB_ENV
7+ shell : bash
68 - name : Cache RubyGems
79 uses : actions/cache@v2
810 id : rubygem-cache
911 with :
1012 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-
1315 - name : Cache Mint
1416 uses : actions/cache@v2
1517 id : mint-cache
1618 with :
1719 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-
2022 - run : ./Scripts/bootstrap.sh
2123 shell : bash
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2424 runs-on : macos-12
2525 steps :
2626 - uses : actions/checkout@v1
27- - uses : ./.github/actions/set-build-image-var
2827 - uses : ./.github/actions/bootstrap
2928 - name : Run Danger
3029 run : bundle exec danger
3837 runs-on : macos-12
3938 steps :
4039 - uses : actions/checkout@v1
41- - uses : ./.github/actions/set-build-image-var
42404341 with :
4442 python-version : 3.8
8179 runs-on : macos-12
8280 steps :
8381 - uses : actions/checkout@v1
84- - uses : ./.github/actions/set-build-image-var
8582 - uses : ./.github/actions/bootstrap
8683 - name : Build Demo App
8784 run : bundle exec fastlane build_demo
You can’t perform that action at this time.
0 commit comments