Skip to content

Commit

Permalink
version bump -> 2.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
HemantKArya committed Aug 13, 2024
1 parent 3555816 commit 357c960
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checkout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:


- name: Rename APK file
run: Rename-Item -Path "build/app/outputs/flutter-apk/app-release.apk" -NewName "bloomee_tunes_android_v2.9.4+${{github.run_number}}.apk"
run: Rename-Item -Path "build/app/outputs/flutter-apk/app-release.apk" -NewName "bloomee_tunes_android_v2.9.5+${{github.run_number}}.apk"

- name: Build Windows App
run: flutter build windows --release --build-number ${{github.run_number}}
Expand All @@ -52,15 +52,15 @@ jobs:
run: Rename-Item -Path "build/windows/x64/runner/Release/bloomee.exe" -NewName "Bloomee.exe"

- name: ZIP build
run: Compress-Archive -Path build/windows/x64/runner/Release/* -Destination build/windows/x64/bloomee_tunes_windows_x64_v2.9.4+${{github.run_number}}.zip
run: Compress-Archive -Path build/windows/x64/runner/Release/* -Destination build/windows/x64/bloomee_tunes_windows_x64_v2.9.5+${{github.run_number}}.zip

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Release
path: |
build/app/outputs/flutter-apk/bloomee_tunes_android_v2.9.4+${{github.run_number}}.apk
build/windows/x64/bloomee_tunes_windows_x64_v2.9.4+${{github.run_number}}.zip
build/app/outputs/flutter-apk/bloomee_tunes_android_v2.9.5+${{github.run_number}}.apk
build/windows/x64/bloomee_tunes_windows_x64_v2.9.5+${{github.run_number}}.zip
4 changes: 2 additions & 2 deletions .github/workflows/linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
- name: Zip Linux App
run: |
cd build/linux/x64/release/bundle
zip -r bloomee_tunes_linux_v2.9.4_dev+${{github.run_number}}.zip .
zip -r bloomee_tunes_linux_v2.9.5_dev+${{github.run_number}}.zip .
- name: Upload Linux App
uses: actions/upload-artifact@v2
with:
name: bloomee_tunes_linux_dev
path: bloomee_tunes_linux_v2.9.4_dev+${{github.run_number}}.zip
path: bloomee_tunes_linux_v2.9.5_dev+${{github.run_number}}.zip
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: jarsigner --verify --verbose build/app/outputs/flutter-apk/app-release.apk

- name: Rename APK file
run: Rename-Item -Path "build/app/outputs/flutter-apk/app-release.apk" -NewName "bloomee_tunes_android_v2.9.4+${{github.run_number}}.apk"
run: Rename-Item -Path "build/app/outputs/flutter-apk/app-release.apk" -NewName "bloomee_tunes_android_v2.9.5+${{github.run_number}}.apk"

- name: Build Windows App
run: flutter build windows --release --build-number ${{github.run_number}}
Expand All @@ -61,22 +61,22 @@ jobs:
run: Rename-Item -Path "build/windows/x64/runner/Release/bloomee.exe" -NewName "Bloomee.exe"

- name: ZIP build
run: Compress-Archive -Path build/windows/x64/runner/Release/* -Destination build/windows/x64/bloomee_tunes_windows_x64_v2.9.4+${{github.run_number}}.zip
run: Compress-Archive -Path build/windows/x64/runner/Release/* -Destination build/windows/x64/bloomee_tunes_windows_x64_v2.9.5+${{github.run_number}}.zip

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Release
path: |
build/app/outputs/flutter-apk/bloomee_tunes_android_v2.9.4+${{github.run_number}}.apk
build/windows/x64/bloomee_tunes_windows_x64_v2.9.4+${{github.run_number}}.zip
build/app/outputs/flutter-apk/bloomee_tunes_android_v2.9.5+${{github.run_number}}.apk
build/windows/x64/bloomee_tunes_windows_x64_v2.9.5+${{github.run_number}}.zip
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: |
build/windows/x64/bloomee_tunes_windows_x64_v2.9.4+${{github.run_number}}.zip
build/app/outputs/flutter-apk/bloomee_tunes_android_v2.9.4+${{github.run_number}}.apk
tag: v2.9.4+${{github.run_number}}
build/windows/x64/bloomee_tunes_windows_x64_v2.9.5+${{github.run_number}}.zip
build/app/outputs/flutter-apk/bloomee_tunes_android_v2.9.5+${{github.run_number}}.apk
tag: v2.9.5+${{github.run_number}}
token: ${{secrets.SECRET_KEY}}
prerelease: true

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.9.4+0
version: 2.9.5+0

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

0 comments on commit 357c960

Please sign in to comment.