aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-06-17 00:19:55 -0500
committerBeatLink <beatlink@protonmail.com>2019-06-17 00:19:55 -0500
commite3cec728f936bb7d0f0c90393dcc704fcc941085 (patch)
treeb440b318df6c6d7e777fdfd045254db42919be58 /.gitlab-ci.yml
parentreduce verbosity on cleanup commands (diff)
downloadlibrewolf-linux-e3cec728f936bb7d0f0c90393dcc704fcc941085.tar.gz
librewolf-linux-e3cec728f936bb7d0f0c90393dcc704fcc941085.tar.bz2
librewolf-linux-e3cec728f936bb7d0f0c90393dcc704fcc941085.zip
Add gitlab release code to CI/CD
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0e1e4af..6f0a200 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,7 @@ image: ubuntu:18.04
stages:
- Build
+ - Release
Build LibreWolf:
stage: Build
@@ -11,3 +12,12 @@ Build LibreWolf:
artifacts:
paths:
- "browser/build_output"
+
+Release to Gitlab:
+ stage: Release
+ image: python3
+ script:
+ - pip3 install gitlab-release
+ - gitlab-release browser/build_output/*
+ only:
+ - tags
bgstack15