-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dbcf8e6
commit 3a20a03
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |