We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9295dde commit 74ccbcaCopy full SHA for 74ccbca
.github/workflows/main.yml
@@ -0,0 +1,26 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+name: Build My App
6
+jobs:
7
+ build:
8
+ name: Build and Release New APK File
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - uses: actions/setup-java@v2
13
+ with:
14
+ distribution: 'zulu'
15
+ java-version: '11'
16
+ - uses: subosito/flutter-action@v2
17
18
+ channel: 'stable'
19
+ - run: flutter pub get
20
+ - run: flutter build apk --release --split-per-abi
21
+ - name: Push to Release
22
+ uses: ncipollo/release-action@v1
23
24
+ artifacts: "build/app/outputs/apk/release/*"
25
+ tag: MightyMines-v1.0.0
26
+ token: ${{ secrets.TOKEN }}
0 commit comments