Skip to content
Snippets Groups Projects
Commit c1d0d0bd authored by Sunny Singh's avatar Sunny Singh
Browse files

updating ci yml

parent c3df6100
No related branches found
No related tags found
No related merge requests found
Pipeline #372814 failed
image: cirrusci/flutter:stable
image: dart:stable
stages:
- build
- deploy
variables:
FLUTTER_VERSION: stable
before_script:
- apt-get update && apt-get install -y curl unzip
- curl -O https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${FLUTTER_VERSION}.zip
- unzip -o flutter_linux_${FLUTTER_VERSION}.zip
- export PATH="$PATH:$PWD/flutter/bin"
- flutter doctor
build:
stage: build
tags:
- macos
script:
- flutter config --enable-web
- flutter build web --release
- flutter pub get
- flutter build web
artifacts:
paths:
- build/web
pages:
stage: deploy
tags:
- macos
script:
- mv build/web public
artifacts:
paths:
- public
only:
- main
\ No newline at end of file
- main
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment