14 lines
360 B
YAML
14 lines
360 B
YAML
# We MUST have a separate pipeline otherwise the artifacts are stale!
|
|
# this is why we use an include file instead of a single file!
|
|
|
|
stages:
|
|
- deploy
|
|
|
|
www.remarkbox.com:
|
|
stage: deploy
|
|
tags: ["www.remarkbox.com"]
|
|
script:
|
|
# publish build to Salt Master
|
|
- sudo /opt/salt-call-state-highstate.sh
|
|
rules:
|
|
- if: '$CI_COMMIT_BRANCH == "master"'
|