Skip to content

Commit

Permalink
version -> 2.5.0 after download feature implt.
Browse files Browse the repository at this point in the history
  • Loading branch information
HemantKArya committed Apr 8, 2024
1 parent e84b118 commit 8e094f5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ jobs:
run: jarsigner --verify --verbose build/app/outputs/flutter-apk/app-release.apk

- name: Rename APK file
run: mv build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/bloomee_tunes_v2.4.4+${{github.run_number}}.apk
run: mv build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/bloomee_tunes_v2.5.0+${{github.run_number}}.apk

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Release
path: |
build/app/outputs/flutter-apk/bloomee_tunes_v2.4.4+${{github.run_number}}.apk
build/app/outputs/flutter-apk/bloomee_tunes_v2.5.0+${{github.run_number}}.apk
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/flutter-apk/bloomee_tunes_v2.4.4+${{github.run_number}}.apk"
tag: v2.4.4+${{github.run_number}}
artifacts: "build/app/outputs/flutter-apk/bloomee_tunes_v2.5.0+${{github.run_number}}.apk"
tag: v2.5.0+${{github.run_number}}
token: ${{secrets.SECRET_KEY}}
2 changes: 1 addition & 1 deletion lib/screens/widgets/more_bottom_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void showMoreBottomSheet(
size: 28,
),
title: const Text(
'Alread Downloaded!',
'Already Downloaded',
style: TextStyle(
color: Default_Theme.primaryColor1,
fontFamily: "Unageo",
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/widgets/song_card_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class SongCardWidget extends StatelessWidget {
child: IconButton(
icon: const Icon(
MingCute.delete_2_line,
size: 30,
size: 28,
color: Default_Theme.primaryColor1,
),
onPressed: () {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 2.4.4+0
version: 2.5.0+0

environment:
sdk: '>=3.0.6 <4.0.0'
Expand Down

0 comments on commit 8e094f5

Please sign in to comment.