Skip to content

Commit

Permalink
Remove Google Drive upload step and update Push to Releases step
Browse files Browse the repository at this point in the history
  • Loading branch information
ishitgami committed Jan 8, 2024
1 parent 094a22b commit e5688de
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/flutter-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,20 @@ jobs:

- run: flutter build apk --split-per-abi

- name: Upload to Google Drive
uses: adityak74/google-drive-upload-git-action@v0.3
with :
folder_id: ${{ secrets.FOLDER_ID }}
file: "build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk"
token: ${{ secrets.CREDENTIALS }}
filename: "app-armeabi-v7a-release.apk"

- name: Push to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
token: ${{ secrets.TOKEN_TEST }}
tag: v1.0.${{ github.run_number }}

- name: Upload to Google Drive
uses: adityak74/google-drive-upload-git-action@v0.3
with :
folder_id: ${{ secrets.FOLDER_ID }}
filename: "build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk"
token: ${{ secrets.CREDENTIALS }}
name: "app-armeabi-v7a-release.apk"


0 comments on commit e5688de

Please sign in to comment.