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 2754046 commit 745ec3cCopy full SHA for 745ec3c
.github/workflows/buildapp.yml
@@ -0,0 +1,29 @@
1
+name: buildapp
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
+ build:
10
+ name: Create Release
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v2
15
16
+ - name: Set Up flutter
17
+ uses: subosito/flutter-action@v1
18
19
+ - name: Get flutter dependencies
20
+ run: flutter pub get
21
22
+ - name: Build apk
23
+ run: flutter build apk --release
24
25
+ - name: Create release and copy apk
26
+ uses: ncipollo/release-action@v1
27
+ with:
28
+ artifacts: "build/app/outputs/flutter-apk/*-release.apk"
29
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments