Unable to determine Flutter version for channel: stable version: x64 architecture: #206
Replies: 6 comments 3 replies
-
Same here! Here is my workflow: name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Clone Flutter repository with master channel
uses: subosito/flutter-action@v2
with:
channel: master
- run: flutter doctor -v
- run: flutter pub get This is my error:
|
Beta Was this translation helpful? Give feedback.
-
Do we know if this is a |
Beta Was this translation helpful? Give feedback.
-
For version 2.9.x, we dropped the support for the master channel. Please update accordingly. |
Beta Was this translation helpful? Give feedback.
-
What do you mean you "dropped the support for the master channel"? We can't run GitHub actions with this tool on master anymore? |
Beta Was this translation helpful? Give feedback.
-
Dropping support for the master channel is a breaking change, and it just broke all our workflows across multiple repositories. Would you consider reverting that change and rather put it in a v3 tag instead? |
Beta Was this translation helpful? Give feedback.
-
Thanks for adding it back to v2, @subosito 🙌 Out of curiosity, what is the rationale behind dropping master support? I'm not familiar with the complexity of the action. |
Beta Was this translation helpful? Give feedback.
-
I get this issue today, how can I fix it? I did not change the workflow recently.
Beta Was this translation helpful? Give feedback.
All reactions