Skip to content

Commit

Permalink
[ci] Upgrade actions/cache to v3 (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
WonyoungChoi authored Jun 3, 2022
1 parent e534a7c commit ce3bd39
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ jobs:
path: src/flutter
fetch-depth: 0

- uses: actions/cache@v3
with:
path: src/out/${{ env.OUTPUT_NAME }}
key: out-build-${{ env.OUTPUT_NAME }}-${{ github.sha }}
restore-keys: |
out-build-${{ env.OUTPUT_NAME }}-
- name: gclient sync
run: |
src/flutter/ci/tizen/gclient-prepare-sync.sh --reduce-deps --shallow-sync
Expand Down Expand Up @@ -195,6 +202,13 @@ jobs:
with:
path: src/flutter

- uses: actions/cache@v3
with:
path: src/out/${{ env.OUTPUT_NAME }}
key: out-macos-build-${{ env.OUTPUT_NAME }}-${{ github.sha }}
restore-keys: |
out-macos-build-${{ env.OUTPUT_NAME }}-
- name: install depot_tools
run: |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
Expand Down

0 comments on commit ce3bd39

Please sign in to comment.