aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
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