Files
pvc/.gitlab-ci.yml
2019-08-20 09:37:36 -04:00

17 lines
242 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