You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
706 B
31 lines
706 B
workflows:
|
|
web-workflow:
|
|
name: Web Workflow
|
|
instance_type: mac_mini
|
|
max_build_duration: 60
|
|
environment:
|
|
flutter: stable
|
|
xcode: latest
|
|
cocoapods: default
|
|
triggering:
|
|
events:
|
|
- push
|
|
scripts:
|
|
- name: Install dependencies
|
|
script: flutter packages pub get
|
|
- name: Enable web
|
|
script: flutter config --enable-web
|
|
- name: Testing
|
|
script: flutter test
|
|
- name: Build web
|
|
script:
|
|
|
|
|
flutter build web --release
|
|
cd build/web
|
|
7z a -r ../web.zip ./*
|
|
artifacts:
|
|
- build/web.zip
|
|
publishing:
|
|
email:
|
|
recipients:
|
|
- sbis1999@gmail.com
|