Commit dc3d06b 1 parent 372fde4 commit dc3d06b Copy full SHA for dc3d06b
File tree 1 file changed +3
-7
lines changed
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 11
11
fail-fast : false
12
12
matrix :
13
13
variant : [debug, release]
14
- include :
15
- - variant : debug
16
- artifact-path : build/app/outputs/apk/app-debug.apk
17
- - variant : release
18
- artifact-path : build/app/outputs/flutter-apk/app-release.apk
19
14
20
15
steps :
21
16
- uses : actions/checkout@v4
33
28
- run : flutter pub get
34
29
working-directory : example/
35
30
# - run: flutter test
36
- - run : flutter build apk --debug --verbose
31
+ - run : flutter build apk --${{ matrix.variant }} --verbose
37
32
working-directory : example/
38
33
- uses : actions/upload-artifact@v4
39
34
with :
40
35
name : example-apk-${{ matrix.variant }}
41
- path : example/${{ matrix.artifact-path }}
36
+ path : example/build/app/outputs/flutter-apk/app-${{ matrix.variant }}.apk
37
+
You can’t perform that action at this time.
0 commit comments