This commit is contained in:
parent
b31acb0ad5
commit
2145b4be32
1 changed files with 5 additions and 1 deletions
|
@ -8,7 +8,11 @@ steps:
|
||||||
image: alpine/git
|
image: alpine/git
|
||||||
commands:
|
commands:
|
||||||
- git submodule update --recursive
|
- git submodule update --recursive
|
||||||
- git pull origin master --recurse-submodules=yes
|
- cat .gitmodules | grep 'path =' | while read -r path; do
|
||||||
|
- cd "$path"
|
||||||
|
- git pull origin master
|
||||||
|
- cd -
|
||||||
|
- done
|
||||||
|
|
||||||
- name: deploy
|
- name: deploy
|
||||||
image: drillster/drone-rsync
|
image: drillster/drone-rsync
|
||||||
|
|
Loading…
Reference in a new issue