Skip to content

Commit

Permalink
Merge pull request #81 from sanjay14073/main
Browse files Browse the repository at this point in the history
Added build apk action
  • Loading branch information
prajapatihet authored Oct 18, 2024
2 parents 4fe1f0d + c8074fd commit bb39046
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/build_apk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build APK on Merge to Main

on:
push:
branches:
- main

jobs:
build-apk:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.5'
channel: stable

- name: Install dependencies
run: flutter pub get
continue-on-error: true

- name: Build APK
run: flutter build apk --release
continue-on-error: true

- name: Upload APK as artifact
uses: actions/upload-artifact@v3
with:
name: apk
path: build/app/outputs/flutter-apk/app-release.apk
continue-on-error: true

0 comments on commit bb39046

Please sign in to comment.