syncfusion-animations #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.4 | |
token: ${{ secrets.TOKEN }} | |
release_name: "stable-build-v2.0.4" | |
body: | | |
## What's New in v2.0.4 | |
- **Bug Fixes**: Resolved minors bugs pertaining to response times, getting ready for syncfusion. | |
- **Performance Improvements**: Optimized API response times. | |
- **UI Enhancements**: Updated the home UI and added animations. | |
### Known Issues | |
- Some devices may still experience song player issues, will be solved in future releases . |