Skip to content

Commit

Permalink
Added cache support
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhinpal committed Jul 30, 2023
1 parent ac0b8c3 commit dec0e12
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Cache Flutter dependencies
uses: actions/cache@v2
with:
path: ~/.pub-cache
key: ${{ runner.os }}-flutter-${{ hashFiles('**/pubspec.lock') }}
restore-keys: |
${{ runner.os }}-flutter-
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
Expand Down

0 comments on commit dec0e12

Please sign in to comment.