1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00
This commit is contained in:
Old Autumn 2024-06-29 08:41:19 +00:00 committed by GitHub
commit c3e02b7b63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -61,7 +61,7 @@ steps:
> [!WARNING]
>
> Using `flutter-version-file` requires [`yq`](https://github.com/mikefarah/yq),
> which is not pre-installed in `windows` images. Install it yourself.
> which is installed in `windows` images by this action..
### Use latest release for particular channel

View file

@ -73,6 +73,14 @@ outputs:
runs:
using: composite
steps:
# This is a cross-platform composite action that needs yq to be available.
# ref: https://github.com/actions/runner-images/issues/7443#issuecomment-1514597691
- name: Make yq tool available on Windows runners
if: runner.os == 'Windows'
run: choco install yq
shell: bash
- name: Make setup script executable
run: chmod +x "$GITHUB_ACTION_PATH/setup.sh"
shell: bash