foxgirl-linux/.gitlab-ci.yml

24 lines
368 B
YAML
Raw Normal View History

2019-06-12 22:44:32 +02:00
image: ubuntu:18.04
stages:
- Build
2019-06-17 07:19:55 +02:00
- Release
2019-06-12 22:44:32 +02:00
Build LibreWolf:
stage: Build
script:
2019-06-12 23:24:19 +02:00
- cd browser
2019-06-12 22:44:32 +02:00
- ./build.sh
artifacts:
paths:
- "browser/build_output"
2019-06-17 07:19:55 +02:00
Release to Gitlab:
stage: Release
image: python3
script:
- pip3 install gitlab-release
- gitlab-release browser/build_output/*
only:
- tags