Skip to content

Commit

Permalink
Merge pull request #1 from mo7amedaliEbaid/mo7amedaliEbaid-patch-1
Browse files Browse the repository at this point in the history
Create release_apk.yml
  • Loading branch information
mo7amedaliEbaid authored Jul 15, 2024
2 parents 5c3e2ec + 8889dc3 commit 3d2e2ab
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/release_apk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build Flutter APK

on:
push:
branches:
- master # Change to your branch name if different

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
sdk: '>=3.0.5 <4.0.0' # Specify your Flutter version

- name: Install dependencies
run: flutter pub get

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

- name: Upload APK
uses: actions/upload-artifact@v2
with:
name: release-apk
path: build/app/outputs/flutter-apk/app-release.apk

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: v1.0.0 # Adjust the version tag as needed
release_name: Release v1.0.0 # Adjust the release name as needed
draft: false
prerelease: false

- name: Upload APK to Release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/app/outputs/flutter-apk/app-release.apk
asset_name: app-release.apk
asset_content_type: application/vnd.android.package-archive

0 comments on commit 3d2e2ab

Please sign in to comment.