Skip to content

Commit

Permalink
chore: add nightly build on latest stable sdk (#147)
Browse files Browse the repository at this point in the history
Co-authored-by: Hoang Tran <[email protected]>
  • Loading branch information
smallTrogdor and VanHoangTran authored Jul 1, 2024
1 parent 53fabee commit 627fc2e
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/nightly-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Nightly built.

on:
workflow_dispatch:
schedule:
- cron: "20 2 * * *" # 02:20 am every day

jobs:
build-android:
name: Build Android
runs-on: ubuntu-latest
defaults:
run:
working-directory: example
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
- run: flutter pub get
- name: Build appbundle.
run: flutter build appbundle --profile --no-pub

build-iOS:
name: Build iOS
runs-on: macos-latest
defaults:
run:
working-directory: example
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- run: flutter pub get
- name: Build iOS package
run: flutter build ios --simulator

0 comments on commit 627fc2e

Please sign in to comment.