11 lines
195 B
YAML
11 lines
195 B
YAML
|
image: ilyasemenov/gitlab-ci-git-push
|
||
|
|
||
|
stages:
|
||
|
- deploy
|
||
|
|
||
|
deploy to production:
|
||
|
stage: deploy
|
||
|
environment: production
|
||
|
only:
|
||
|
- master
|
||
|
script: git-push git@github.com:adroslice/bfr.git
|