Last active
April 8, 2023 02:46
-
-
Save sezabass/7becfae07a8c82aca1ea9461e395579e to your computer and use it in GitHub Desktop.
Cache-Article-Chunk-Build-Runner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Cache build runner | |
uses: actions/cache@v2 | |
with: | |
path: | | |
**/.dart_tool | |
**/*.g.dart | |
**/*.mocks.dart | |
**/*.config.dart | |
key: build-runner-${{ hashFiles('**/asset_graph.json', '**/*.dart', '**/pubspec.lock', '**/outputs.json') }} | |
restore-keys: | | |
build-runner- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment