foxgirl-linux/.gitlab-ci.yml
2019-07-17 13:49:02 -05:00

24 lines
403 B
YAML

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