We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 897dd37 commit 0eac774Copy full SHA for 0eac774
action.yml
@@ -29,12 +29,14 @@ runs:
29
steps:
30
# Cache the Flutter SDK
31
- if: ${{ inputs.cache-sdk == 'true' }}
32
+ name: Configure Flutter SDK cache
33
uses: actions/cache@v3
34
with:
35
path: ${{ runner.tool_cache }}/flutter-${{ runner.os }}-${{ inputs.version }}-${{ runner.arch }}
36
key: flutter-action-setup-flutter-${{ runner.os }}-${{ inputs.version }}-${{ inputs.channel }}-${{ runner.arch }}
37
# Cache the pub dependencies
38
- if: ${{ inputs.cache == 'true' }}
39
+ name: Configure pub dependencies cache
40
41
42
path: ${{ runner.temp }}/pub-cache
0 commit comments