Remove quotes from commands
parent
d7053b0325
commit
054c172f17
20
drone.yml
20
drone.yml
|
|
@ -5,16 +5,16 @@ steps:
|
|||
- name: build_client
|
||||
image: node
|
||||
commands:
|
||||
- "apt update"
|
||||
- "apt install tree"
|
||||
- "cd Server/src"
|
||||
- "ls"
|
||||
- "cd ../../"
|
||||
- "cd Client"
|
||||
- "npm install"
|
||||
- "node node_modules/@angular/cli/bin/ng build --prod --configuration=production"
|
||||
- "cd ../"
|
||||
- "tree"
|
||||
- apt update
|
||||
- apt install tree
|
||||
- cd Server/src
|
||||
- ls
|
||||
- cd ../../
|
||||
- cd Client
|
||||
- npm install
|
||||
- node node_modules/@angular/cli/bin/ng build --prod --configuration=production
|
||||
- cd ../
|
||||
- tree
|
||||
when:
|
||||
event:
|
||||
- push
|
||||
|
|
|
|||
Loading…
Reference in New Issue