Skip to content

Commit

Permalink
Update flutter-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGuyDangerous authored Nov 7, 2022
1 parent 93390f5 commit acca7f3
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions .github/workflows/flutter-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,12 @@ jobs:
- run: flutter format --set-exit-if-changed .

# Build apk.
- run: flutter build apk --split-per-abi
- run: flutter build apk --split-per-abi --release
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/app-armeabi-v7a-release.apk"
tag: v5.0.${{github.run_number}}
token: ${{secrets.TOKEN}}
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/app-arm64-v8a-release.apk"
tag: v5.0.${{github.run_number}}
token: ${{secrets.TOKEN}}
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/app-x86_64-release.apk"
artifacts: "build/app/outputs/apk/release/*.apk"
replacesArtifacts: false
tag: v5.0.${{github.run_number}}
token: ${{secrets.TOKEN}}

0 comments on commit acca7f3

Please sign in to comment.