Remove quotes from commands

test
dan 2020-10-26 15:54:55 -06:00
parent d7053b0325
commit 054c172f17
1 changed files with 10 additions and 10 deletions

View File

@ -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