Skip to content

Commit

Permalink
🔖 Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Beelzenef committed Nov 26, 2023
1 parent 62dde94 commit d519566
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create Flutter app release
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
- run: flutter pub get
- run: flutter build apk
- uses: actions/upload-artifact@v1
with:
name: release-apk
path: build/app/outputs/apk/release/app-release.apk

0 comments on commit d519566

Please sign in to comment.