Skip to content

Commit

Permalink
add upload to release
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyLewen committed Oct 19, 2021
1 parent 91b8693 commit 200bb5f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/buildapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -26,9 +27,19 @@ jobs:
- Second Change
draft: false
prerelease: false

- name: Set Up flutter
uses: subosito/flutter-action@v1

- name: Get dependencies
run: flutter pub get

- name: Build app
run: flutter build apk --release

- name: Upload to release
uses: JasonEtco/upload-to-release@master
with:
args: app-release.apk
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 200bb5f

Please sign in to comment.