image: ubuntu:18.04 stages: - Build - Release Build Linux Packages: stage: Build script: - cd browser/linux - ./build.sh artifacts: paths: - "browser/linux/build_output" Release to Gitlab: stage: Release image: python3 script: - pip3 install gitlab-release - gitlab-release browser/linux/build_output/* only: - tags