Solian/.github/workflows/nightly.yml

43 lines
1010 B
YAML
Raw Normal View History

2024-07-16 12:33:10 +00:00
name: release-nightly
on:
push:
branches: [ master ]
jobs:
build-web:
2024-07-16 12:34:47 +00:00
runs-on: ubuntu-latest
2024-07-16 12:33:10 +00:00
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- run: flutter pub get
- run: flutter build web
build-apk:
2024-07-16 12:34:47 +00:00
runs-on: ubuntu-latest
2024-07-16 12:33:10 +00:00
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- run: flutter pub get
- run: flutter build apk --split-per-abi
build-exe:
runs-on: windows-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- run: flutter pub get
- run: flutter build window