Skip to content

Commit 815ffcd

Browse files
committed
Added the build workflow for ci/cd
1 parent c7962d7 commit 815ffcd

File tree

5 files changed

+24
-0
lines changed

5 files changed

+24
-0
lines changed

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
push:
3+
tags:
4+
- v*
5+
name: Continuous Delivery Release apk
6+
jobs:
7+
build:
8+
name: Build APK
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-java@v1
13+
with:
14+
java-version: '12.x'
15+
- uses: subosito/flutter-action@v1
16+
with:
17+
flutter-version: '1.22.2'
18+
- run: flutter pub get
19+
- run: flutter build apk -t lib/main.dart --split-per-abi
20+
- name: Release apk
21+
uses: ncipollo/release-action@v1
22+
with:
23+
artifacts: "build/app/outputs/apk/release/*.apk"
24+
token: ${{secrets.FLUTTER}}

lib/src/views/ui/widgets/panel/panel.dart

Whitespace-only changes.

lib/src/views/ui/widgets/panel/sliding_up_panel.dart

Whitespace-only changes.

lib/src/views/utils/constants/colors.dart

Whitespace-only changes.

0 commit comments

Comments
 (0)