Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HemantKArya committed Dec 8, 2023
1 parent 548c8f9 commit ccd8498
Showing 1 changed file with 4 additions and 4 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_v1.0.0+${{github.run_number}}.apk
run: mv build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/bloomee_tunes_v1.0.1+${{github.run_number}}.apk

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Release
path: |
build/app/outputs/flutter-apk/bloomee_tunes_v1.0.0+${{github.run_number}}.apk
build/app/outputs/flutter-apk/bloomee_tunes_v1.0.1+${{github.run_number}}.apk
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/flutter-apk/bloomee_tunes_v1.0.0+${{github.run_number}}.apk"
tag: v1.0.0+${{github.run_number}}
artifacts: "build/app/outputs/flutter-apk/bloomee_tunes_v1.0.1+${{github.run_number}}.apk"
tag: v1.0.1+${{github.run_number}}
token: ${{secrets.SECRET_KEY}}

0 comments on commit ccd8498

Please sign in to comment.