File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 47
47
required : false
48
48
type : string
49
49
default : " ."
50
+ package_get_excludes :
51
+ required : false
52
+ type : string
53
+ default : " !*"
50
54
51
55
jobs :
52
56
build :
72
76
run : |
73
77
flutter pub global activate very_good_cli
74
78
very_good --analytics false
75
- very_good packages get --recursive
79
+ very_good packages get --recursive --ignore=${{inputs.package_get_excludes}}
76
80
77
81
- name : ⚙️ Run Setup
78
82
if : " ${{inputs.setup != ''}}"
Original file line number Diff line number Diff line change @@ -215,6 +215,12 @@ The Flutter package workflow consists of the following steps:
215
215
216
216
**Default** `"ubuntu-latest"`
217
217
218
+ # ### `package_get_excludes`
219
+
220
+ **Optional** List of paths to exclude from `packages get`. Supports `globs` to describe file patterns.
221
+
222
+ **Default** `"!*"`
223
+
218
224
# ## Example Usage
219
225
220
226
` ` ` yaml
You can’t perform that action at this time.
0 commit comments