Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkonidena committed Dec 11, 2023
1 parent dbcf8e6 commit 3a20a03
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name : Bookify CI


on:
push:
branches:
- release

jobs:
releaseApp:

runs-on : ubuntu-latest
steps:

-uses : actions/checkout@v3
-uses : actions/checkout@v2

with:
java-version : 12.x

-uses: subosito/flutter-action@v2
with:
channel : 'stable'
flutter-version : '3.13.0'

-name: Get dependencies for flutter project
run : flutter pub get

-run : flutter analyze .

-name: Build APK for release
run : flutter build apk --release


-uses: actions/upload-artifact@v3
with:
name: release-apk
build: build/app/outputs/apk/release/app-release.apk

0 comments on commit 3a20a03

Please sign in to comment.