Skip to content

Commit

Permalink
Update tagged_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andannn authored Jul 10, 2024
1 parent bd132a5 commit 1289d90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tagged_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- run: flutter test

- name: build
run: flutter build
run: flutter build apk && flutter build appbundle
env:
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
Expand All @@ -50,6 +50,8 @@ jobs:
- name: Upload to github
uses: "marvinpinto/action-automatic-releases@latest"
with:
files: "build/app/outputs/apk/release/*"
files: |
build/app/outputs/flutter-apk/*
build/app/outputs/bundle/release/*
repo_token: "${{ secrets.TOKEN }}"
prerelease: true

0 comments on commit 1289d90

Please sign in to comment.