pvc/.gitlab-ci.yml

17 lines
245 B
YAML

stages:
- build
- deploy
build:
stage: build
before_script:
- git submodule update --init
script:
- /bin/bash build-deb.sh
- /usr/local/bin/deploy-package
artifacts:
paths:
- "../*.deb"
only:
- master