Skip to content

Commit d93d7f0

Browse files
committed
fix: remove dynamic allocating of version parameter in config file
1 parent 3ad1dfb commit d93d7f0

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.circleci/config.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,10 @@ jobs:
252252
tag: 2024.01.1
253253
steps:
254254
- advanced-checkout/shallow-checkout
255-
- setup_flutter:
256-
version: $(./scripts/releases/get_latest_stable_flutter_version.sh)
255+
- setup_flutter
256+
- run:
257+
name: Upgrade Flutter
258+
command: flutter upgrade && flutter --version
257259
- run:
258260
name: Switch to Example app & Build app
259261
command: cd scripts && flutter build apk --debug
@@ -264,8 +266,10 @@ jobs:
264266
resource_class: macos.m1.medium.gen1
265267
steps:
266268
- advanced-checkout/shallow-checkout
267-
- setup_flutter:
268-
version: $(./scripts/releases/get_latest_stable_flutter_version.sh)
269+
- setup_flutter
270+
- run:
271+
name: Upgrade Flutter
272+
command: flutter upgrade && flutter --version
269273
- run:
270274
name: Install CocoaPods
271275
command: sudo gem install cocoapods

0 commit comments

Comments
 (0)