aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 6f0a2007a9fed8a92086b9e94f6d620666e8c128 (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:
  - Build
  - Release

Build LibreWolf:
    stage: Build
    script:
        - cd browser
        - ./build.sh
    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