Compare commits
9 Commits
c88b92af8c
...
05e9d5989e
Author | SHA1 | Date |
---|---|---|
giles | 05e9d5989e | |
giles | f46d549961 | |
giles | 98bbefcb57 | |
giles | e3234be4ae | |
giles | f3df639d92 | |
giles | c46847a250 | |
giles | a630a88c35 | |
giles | 90f32e372e | |
giles | 328c73f710 |
57
.drone.yml
57
.drone.yml
|
@ -28,38 +28,6 @@ clone:
|
||||||
disable: false
|
disable: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "check out product-development"
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- format-branch
|
|
||||||
image: alpine/git:latest
|
|
||||||
commands:
|
|
||||||
- git config credential.helper '!f() { sleep 1; echo "username=${GIT_USER}"; echo "password=${GIT_PASSWORD}"; }; f'
|
|
||||||
- git fetch
|
|
||||||
- git checkout -b product-development
|
|
||||||
- git merge format-branch
|
|
||||||
environment:
|
|
||||||
GIT_PASSWORD:
|
|
||||||
from_secret: GIT_PASSWORD
|
|
||||||
GIT_USER:
|
|
||||||
from_secret: GIT_USER
|
|
||||||
|
|
||||||
- name: "check out deployed"
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
image: alpine/git:latest
|
|
||||||
commands:
|
|
||||||
- git config credential.helper '!f() { sleep 1; echo "username=$${GIT_USER}"; echo "password=$${GIT_PASSWORD}"; }; f'
|
|
||||||
- git fetch
|
|
||||||
- git checkout -b deployed
|
|
||||||
- git merge master
|
|
||||||
environment:
|
|
||||||
GIT_PASSWORD:
|
|
||||||
from_secret: GIT_PASSWORD
|
|
||||||
GIT_USER:
|
|
||||||
from_secret: GIT_USER
|
|
||||||
|
|
||||||
- name: "convert to xml"
|
- name: "convert to xml"
|
||||||
image: sigyl/zone-10-batch2yaml:latest
|
image: sigyl/zone-10-batch2yaml:latest
|
||||||
when:
|
when:
|
||||||
|
@ -74,7 +42,7 @@ steps:
|
||||||
image: sigyl/zone-10-batch2yaml:latest
|
image: sigyl/zone-10-batch2yaml:latest
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- format-branch
|
- deployed
|
||||||
commands:
|
commands:
|
||||||
- node /app/servers/apps/batch2yaml/build/index.js . yml
|
- node /app/servers/apps/batch2yaml/build/index.js . yml
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -84,7 +52,7 @@ steps:
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- master
|
||||||
- format-branch
|
- deployed
|
||||||
image: alpine/git:latest
|
image: alpine/git:latest
|
||||||
commands:
|
commands:
|
||||||
- git status
|
- git status
|
||||||
|
@ -95,18 +63,33 @@ steps:
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- master
|
||||||
- format-branch
|
|
||||||
image: alpine/git:latest
|
image: alpine/git:latest
|
||||||
commands:
|
commands:
|
||||||
- git config credential.helper '!f() { sleep 1; echo "username=$${GIT_USER}"; echo "password=$${GIT_PASSWORD}"; }; f'
|
- git config credential.helper '!f() { sleep 1; echo "username=$${GIT_USER}"; echo "password=$${GIT_PASSWORD}"; }; f'
|
||||||
- git add -A
|
- git add -A
|
||||||
- git commit -m "$${DRONE_COMMIT_MESSAGE}"
|
- git commit -m "$${DRONE_COMMIT_MESSAGE}"
|
||||||
- git push -f origin --set-upstream $$(git symbolic-ref --short HEAD)
|
- git push -f origin HEAD:deployed
|
||||||
environment:
|
environment:
|
||||||
GIT_PASSWORD:
|
GIT_PASSWORD:
|
||||||
from_secret: GIT_PASSWORD
|
from_secret: GIT_PASSWORD
|
||||||
GIT_USER:
|
GIT_USER:
|
||||||
from_secret: GIT_USER
|
from_secret: GIT_USER
|
||||||
|
- name: "git - product-development"
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- deployed
|
||||||
|
image: alpine/git:latest
|
||||||
|
commands:
|
||||||
|
- git config credential.helper '!f() { sleep 1; echo "username=$${GIT_USER}"; echo "password=$${GIT_PASSWORD}"; }; f'
|
||||||
|
- git add -A
|
||||||
|
- git commit -m "$${DRONE_COMMIT_MESSAGE}"
|
||||||
|
- git push -f origin HEAD:product-development
|
||||||
|
environment:
|
||||||
|
GIT_PASSWORD:
|
||||||
|
from_secret: GIT_PASSWORD
|
||||||
|
GIT_USER:
|
||||||
|
from_secret: GIT_USER
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: dockersock
|
- name: dockersock
|
||||||
path: /var/run
|
path: /var/run
|
||||||
|
@ -134,7 +117,7 @@ volumes:
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
branch:
|
||||||
- format-branch
|
- deployed
|
||||||
- master
|
- master
|
||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
|
|
Loading…
Reference in New Issue