Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geekswamp/flutter-sdk-action
Flutter SDK GitHub Action, currently only supports Android and Linux
https://github.com/geekswamp/flutter-sdk-action
Last synced: about 1 hour ago
JSON representation
Flutter SDK GitHub Action, currently only supports Android and Linux
- Host: GitHub
- URL: https://github.com/geekswamp/flutter-sdk-action
- Owner: geekswamp
- License: mit
- Created: 2024-05-27T07:38:40.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-02T04:03:57.000Z (3 months ago)
- Last Synced: 2025-01-17T20:53:02.169Z (3 days ago)
- Language: Dockerfile
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flutter SDK Action
Flutter SDK GitHub Action.
> [!NOTE]
>
> This action currently only supports Android and Linux## Use Specific Flutter Shannel
```yaml
steps:
- name: Set up Flutter
uses: geekswamp/flutter-sdk-action@v1
with:
channel: stable # or beta
- run: flutter --version
```## Build Target
### Build for Android
```yaml
steps:
- name: Set up Flutter
uses: geekswamp/flutter-sdk-action@v1
with:
channel: stable
- run: flutter pub get
- run: flutter test
- run: flutter build apk
```### Build for Linux Desktop
```yaml
steps:
- name: Set up Flutter
uses: geekswamp/flutter-sdk-action@v1
with:
channel: stable
- run: flutter pub get
- run: flutter test
- run: flutter build linux
```