Skip to content
Snippets Groups Projects
Commit b988f3c3 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

add flutter-web.gitlab-ci.yml

parent 20de7069
No related branches found
No related tags found
No related merge requests found
# Required variables:
## APP_DIRECTORY: The directory of the app
stages:
- build
variables:
FLUTTER_WEB_IMAGE: registry.420joos.dev/flutter:3.19.0
web_build:
stage: build
image:
name: ${FLUTTER_WEB_IMAGE}
pull_policy: always
tags:
- amd64
artifacts:
paths:
- web/
expire_in: 1 day
script:
- cd ${APP_DIRECTORY}
- flutter build web
after_script:
- mv app/build/web .
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment