Compare commits
1 Commits
79fdfbf6f2
...
34e5ad7df2
Author | SHA1 | Date |
---|---|---|
giles | 34e5ad7df2 |
10
.drone.yml
10
.drone.yml
|
@ -17,12 +17,11 @@ steps:
|
||||||
- format-branch
|
- 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 checkout -b master
|
#- git checkout -b master
|
||||||
- git pull origin master
|
#- git pull origin master
|
||||||
# - git branch -D product-development
|
# - git branch -D product-development
|
||||||
- git checkout -b product-development
|
- git checkout -b product-development
|
||||||
- git merge format-branch
|
|
||||||
#- git merge --squash --no-commit --strategy-option=theirs format-branch
|
#- git merge --squash --no-commit --strategy-option=theirs format-branch
|
||||||
environment:
|
environment:
|
||||||
GIT_PASSWORD:
|
GIT_PASSWORD:
|
||||||
|
@ -46,7 +45,6 @@ steps:
|
||||||
branch:
|
branch:
|
||||||
- format-branch
|
- format-branch
|
||||||
commands:
|
commands:
|
||||||
- node /app/servers/apps/batch2yaml/build/index.js . delete
|
|
||||||
- node /app/servers/apps/batch2yaml/build/index.js . yml
|
- node /app/servers/apps/batch2yaml/build/index.js . yml
|
||||||
volumes:
|
volumes:
|
||||||
- name: dockersock
|
- name: dockersock
|
||||||
|
@ -71,7 +69,7 @@ steps:
|
||||||
- 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 "deploying- $${DRONE_COMMIT_MESSAGE}"
|
- git commit -m "deploying- $${DRONE_COMMIT_MESSAGE}"
|
||||||
- git push -f origin HEAD:deployed
|
- git push origin HEAD:deployed
|
||||||
environment:
|
environment:
|
||||||
GIT_PASSWORD:
|
GIT_PASSWORD:
|
||||||
from_secret: GIT_PASSWORD
|
from_secret: GIT_PASSWORD
|
||||||
|
|
Loading…
Reference in New Issue