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