mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-05-28 03:39:54 +00:00
18 lines
281 B
YAML
18 lines
281 B
YAML
image: geerlingguy/docker-debian9-ansible:latest
|
|
|
|
before_script:
|
|
- eval $(ssh-agent -s)
|
|
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
|
|
|
|
deploy_to_webserver:
|
|
stage: deploy
|
|
|
|
only:
|
|
- develop
|
|
|
|
script:
|
|
- ansible-playbook .ansible-ci.yml
|
|
|
|
when: manual
|
|
|