Skip to content

Commit

Permalink
upload apk to github release
Browse files Browse the repository at this point in the history
  • Loading branch information
devout-coder committed Aug 24, 2023
1 parent 29d48b4 commit 301db0c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-apk.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Flutter CI

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: "20.x"
- uses: subosito/flutter-action@v1
with:
channel: "beta"
- run: flutter pub get
# - run: flutter format --set-exit-if-changed .
# - run: flutter analyze .
- 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 301db0c

Please sign in to comment.