-
-
Notifications
You must be signed in to change notification settings - Fork 200
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 to integrate with caching #283
Comments
If you want to take advantage of caching, you just need to set - name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.0
precache: true # <-- |
Uh, I just created #284 and I wonder what the difference between |
Ugh, my bad! |
I meant this: - name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.0
cache: true # <-- |
|
This might be a stupid question on a closed issue, but what exactly does |
Not a stupid question at all:).
I guess this is because archiving cache + sending cache to github and (in a subsequent workflow run) downloading cache from github is not necessarily much faster than just downloading everything from Google servers every time. If you don't see any improvement, feel free to disable it. |
For caching, I see this section:
What I do not know is the following:
The text was updated successfully, but these errors were encountered: