foxgirl-linux/.gitlab-ci.yml

24 lines
408 B
YAML
Raw Normal View History

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