mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
Merge 9050d43be8
into 44ac965b96
This commit is contained in:
commit
c3e02b7b63
2 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue