From 2783a3f08e1baf891508463f8c6653c258246225 Mon Sep 17 00:00:00 2001 From: Alif Rachmawadi Date: Wed, 1 Nov 2023 17:59:30 +0700 Subject: [PATCH] ensure setup.sh executable; fixes #245 --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index e665bca..7865b51 100644 --- a/action.yml +++ b/action.yml @@ -43,6 +43,8 @@ outputs: runs: using: 'composite' steps: + - run: chmod +x $GITHUB_ACTION_PATH/setup.sh + shell: bash - id: flutter-action 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