14 lines
202 B
YAML
14 lines
202 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
|
|
only:
|
|
- master
|