foxgirl-linux/.gitlab-ci.yml
2019-07-04 01:42:49 -05:00

24 lines
391 B
YAML

image: ubuntu:18.04
stages:
- Build
- Release
Build Linux Packages:
stage: 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