Skip to content

Commit

Permalink
Test: Build Process
Browse files Browse the repository at this point in the history
  • Loading branch information
AzhamProdLive authored Feb 1, 2024
1 parent ca40126 commit a63cb29
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Android Release

# 1
on:
# 2
push:
branches: [ "TestsBuildsWorkflow(temp)" ]
pull_request:
branches: [ "TestsBuildsWorkflow(temp)" ]

# 3
workflow_dispatch:

# 4
jobs:
# 5
build:
# 6
runs-on: ubuntu-latest

# 7
steps:
# 8
- uses: actions/checkout@v3
# 9
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: "12.x"
# 10
- uses: subosito/flutter-action@v2
with:
# 11
flutter-version: "3.0.0"
channel: 'stable'
# 12
- name: Get dependencies
run: flutter pub get

# Runs a set of commands using the runners shell
- name: Start release build
run: flutter build appbundle

0 comments on commit a63cb29

Please sign in to comment.