Try to fix file location issue
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
3f8486a7da
commit
b31acb0ad5
1 changed files with 7 additions and 7 deletions
14
.drone.yml
14
.drone.yml
|
@ -17,15 +17,15 @@ steps:
|
||||||
port: 3022
|
port: 3022
|
||||||
key:
|
key:
|
||||||
from_secret: starlark_ssh_key
|
from_secret: starlark_ssh_key
|
||||||
source: ./lib
|
source: ./lib/
|
||||||
target: /starlark/lib_new
|
target: /starlark/lib_new/
|
||||||
recursive: 'true'
|
recursive: 'true'
|
||||||
exclude: ".git/"
|
exclude: ".git/"
|
||||||
script: |
|
script:
|
||||||
cd /starlark
|
- cd /starlark
|
||||||
mv lib lib_old
|
- mv lib lib_old
|
||||||
mv lib_new lib
|
- mv lib_new lib
|
||||||
rm -Rf lib_old
|
- rm -Rf lib_old
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- master
|
||||||
|
|
Loading…
Reference in a new issue