aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-04 01:42:49 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-04 01:42:49 -0500
commit5739e64b0f65cfbfa4cd11675f151b62dcf91c04 (patch)
treefba8eb23eb3ddda9094f2c0157ea6782ce762b6f /.gitlab-ci.yml
parentDelete unecessary preferences (diff)
downloadlibrewolf-linux-5739e64b0f65cfbfa4cd11675f151b62dcf91c04.tar.gz
librewolf-linux-5739e64b0f65cfbfa4cd11675f151b62dcf91c04.tar.bz2
librewolf-linux-5739e64b0f65cfbfa4cd11675f151b62dcf91c04.zip
Move build job to linux specific variant
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5c16f07..56d7c4d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,7 @@ stages:
- Build
- Release
-Build LibreWolf:
+Build Linux Packages:
stage: Build
script:
- cd browser/linux
bgstack15