From 1e6ee87cb840500837bcd50a667fb28815d8e310 Mon Sep 17 00:00:00 2001 From: Adrien Padol Date: Sat, 17 Sep 2022 02:11:03 +0200 Subject: [PATCH] Added missing parameter for cache-key (#187) --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index d0aa64e1..df659610 100644 --- a/action.yml +++ b/action.yml @@ -44,7 +44,7 @@ runs: using: 'composite' steps: - id: flutter-action - run: $GITHUB_ACTION_PATH/setup.sh -p -c '${{ inputs.cache-path }}' -n '${{ inputs.flutter-version }}' -a '${{ inputs.architecture }}' ${{ inputs.channel }} + run: $GITHUB_ACTION_PATH/setup.sh -p -c '${{ inputs.cache-path }}' -k '${{ inputs.cache-key }}' -n '${{ inputs.flutter-version }}' -a '${{ inputs.architecture }}' ${{ inputs.channel }} shell: bash - if: ${{ inputs.cache == 'true' }} uses: actions/cache@v3