blob: 75229f0e8132ce5dc87204cd6d5fefbd980ea9ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
image: ubuntu:18.04
stages:
- Linux-Build
- Release
Build Linux Packages:
stage: Linux-Build
script:
- cd browser/linux
- ./build.sh
artifacts:
paths:
- "LibreWolf.tar.bz2"
- "LibreWolf.AppImage"
- "librewolf-flatpak-repo"
- "LibreWolf.flatpak"
Release to Gitlab:
stage: Release
image: python3
script:
- pip3 install gitlab-release
- gitlab-release LibreWolf.tar.bz2 LibreWolf.AppImage librewolf-flatpak-repo LibreWolf.flatpak
only:
- tags
|