Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do I pull 3.10.7? #242

Closed
larry-cariq opened this issue Aug 24, 2023 · 3 comments
Closed

How do I pull 3.10.7? #242

larry-cariq opened this issue Aug 24, 2023 · 3 comments

Comments

@larry-cariq
Copy link

I am not able to pull the Flutter version 3.10.7 because it is not setup in a channel. I've tried using the channels stable and any and it still does not work. Is there a way to pull version 3.10.7?

Reference: https://github.com/flutter/flutter/wiki/Upgrading-from-3.10.6-to-3.10.7

Here are my results:

Run subosito/flutter-action@v2
Run $GITHUB_ACTION_PATH/setup.sh -p -c '/Users/runner/hostedtoolcache/flutter/:channel:-:version:-:arch:' -k 'flutter-:os:-:channel:-:version:-:arch:-:hash:' -n '3.10.7' -a 'X64' any
Unable to determine Flutter version for channel: any version: 3.10.7 architecture: x64
Error: Process completed with exit code 1.
@rpekarek-tc
Copy link

Any update on this?

@JhonyPerez
Copy link

JhonyPerez commented Aug 30, 2023

@larry-cariq

To solve this we are using this action to set the flutter version to 3.10.6, and then manually changing to the flutter directory and checking out 3.10.7 from there.

- name: 'Set Flutter 3.10.6'
   uses: subosito/flutter-action@v2
   with:
       flutter-version: 3.10.6
- name: 'Checkout Flutter 3.10.7'
   shell: bash
   run: |
     cd $FLUTTER_ROOT;
     git fetch --tags;
     git checkout 3.10.7;
     flutter --version;

@larry-cariq
Copy link
Author

@JhonyPerez Those shell commands worked well. Thanks.

@subosito subosito closed this as completed Nov 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants