foxgirl-linux/.gitlab-ci.yml
2019-06-17 00:19:55 -05:00

24 lines
368 B
YAML

image: ubuntu:18.04
stages:
- Build
- Release
Build LibreWolf:
stage: Build
script:
- cd browser
- ./build.sh
artifacts:
paths:
- "browser/build_output"
Release to Gitlab:
stage: Release
image: python3
script:
- pip3 install gitlab-release
- gitlab-release browser/build_output/*
only:
- tags