Skip to content

Commit

Permalink
Add Github Actions (#2)
Browse files Browse the repository at this point in the history
Create flutter-build.yml
  • Loading branch information
thermitex authored Jun 7, 2024
2 parents 1240e03 + 23b1461 commit 68c2b8a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Flutter Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: macos-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: 3.19.4
- name: Get dependencies
run: flutter pub get
- name: Build iOS
run: flutter build ios --release --no-codesign

0 comments on commit 68c2b8a

Please sign in to comment.