File tree 6 files changed +86
-1
lines changed
6 files changed +86
-1
lines changed Original file line number Diff line number Diff line change
1
+ name-template : Release v$NEXT_MINOR_VERSION 🌈
2
+ tag-template : v$NEXT_MINOR_VERSION
3
+ categories :
4
+ - title : 🚀 Features
5
+ label :
6
+ - feature
7
+ - feat
8
+ - title : 🐛 Bug Fixes
9
+ label : fix
10
+ - title : 🧰 Maintenance
11
+ label : chore
12
+ - title : Dependencies and Libraries
13
+ label :
14
+ - dependencies
15
+ - chore(deps)
16
+ change-template : ' - $TITLE (#$NUMBER) - @$AUTHOR'
17
+ template : |-
18
+ ## Changes
19
+
20
+ $CHANGES
21
+
22
+ ## Contributors
23
+
24
+ Thanks a lot to our contributors for making this release possible:
25
+ $CONTRIBUTORS
Original file line number Diff line number Diff line change 23
23
run : flutter analyze
24
24
25
25
android :
26
+ name : Android Flutter Build
26
27
needs : common
27
28
runs-on : ubuntu-latest
28
29
steps :
42
43
flutter build appbundle
43
44
44
45
ios :
46
+ name : iOS Flutter Build
45
47
needs : common
46
48
runs-on : macos-latest
47
49
steps :
Original file line number Diff line number Diff line change 62
62
63
63
64
64
android :
65
+ name : Android Flutter Build
65
66
needs : common
66
67
runs-on : ubuntu-latest
67
68
steps :
@@ -182,6 +183,7 @@ jobs:
182
183
fi
183
184
184
185
ios :
186
+ name : iOS Flutter Build
185
187
needs : common
186
188
runs-on : macos-latest
187
189
steps :
@@ -200,4 +202,18 @@ jobs:
200
202
VERSION_NAME : ${{needs.common.outputs.VERSION_NAME}}
201
203
VERSION_CODE : ${{needs.common.outputs.VERSION_CODE}}
202
204
run : |
203
- flutter build ipa --no-codesign --build-name $VERSION_NAME --build-number $VERSION_CODE
205
+ flutter build ipa --no-codesign --build-name $VERSION_NAME --build-number $VERSION_CODE
206
+
207
+ update-release :
208
+ needs : [common, android, ios]
209
+ runs-on : ubuntu-latest
210
+ steps :
211
+ - name : Run Release Drafter
212
+ uses : release-drafter/release-drafter@v6
213
+ env :
214
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
215
+ with :
216
+ version : ${{ needs.common.outputs.VERSION_NAME }}
217
+ name : ' Release v${{ needs.common.outputs.VERSION_NAME }} 🌈'
218
+ tag : ' v${{ needs.common.outputs.VERSION_CODE }}'
219
+
Original file line number Diff line number Diff line change
1
+ name : " Semantic Validation"
2
+
3
+ on :
4
+ pull_request_target :
5
+ types :
6
+ - opened
7
+ - edited
8
+ - synchronize
9
+
10
+ permissions :
11
+ pull-requests : write
12
+
13
+ jobs :
14
+ main :
15
+ name : Validate PR title
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - uses : amannn/action-semantic-pull-request@v5
19
+ env :
20
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
21
+ with :
22
+ ignoreLabels : |
23
+ chore(deps)
Original file line number Diff line number Diff line change
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3
+ // Extension identifier format: ${publisher }.${name}. Example: vscode.csharp
4
+
5
+ // List of extensions which should be recommended for users of this workspace.
6
+ "recommendations" : [
7
+ " dart-code.flutter"
8
+ ],
9
+ // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
10
+ "unwantedRecommendations" : [
11
+
12
+ ]
13
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "[dart]" : {
3
+ "editor.defaultFormatter" : " Dart-Code.dart-code" ,
4
+ "editor.formatOnSave" : true ,
5
+ }
6
+ }
You can’t perform that action at this time.
0 commit comments