aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 693cef31addd653e80be4e1c53d91ec0a9fdb40d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image: ubuntu:18.04

stages:
  - Linux-Build
  - Release

Build Linux Packages:
    stage: Linux-Build
    script:
        - cd browser/linux
        - ./build.sh
    artifacts:
        paths:
            - "browser/linux/LibreWolf.tar.bz2"

Release to Gitlab:
  stage: Release
  image: python3
  script:
    - pip3 install gitlab-release
    - gitlab-release browser/linux/build_output/*
  only:
    - tags
bgstack15