-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (34 loc) · 1.19 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
on:
push:
branches:
- main
name: Build My Apps
jobs:
build:
name: Build and Release new apk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: flutter build apk --release --split-per-abi
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
tag: v2.0.3
token: ${{ secrets.TOKEN }}
release_name: "stable-build-v2"
body: |
## What's New in v2.0.3
- **Bug Fixes**: Resolved an issue where all three quotes would display at the same time.
- **Performance Improvements**: Optimized API response times.
- **UI Enhancements**: Updated the home UI and improved navigation for a smoother experience.
### Known Issues
- Some devices may still experience intermittent (API LOSSES) connectivity issues. We are investigating this.