unee-t / frontend

Meteor front end
https://case.dev.unee-t.com/
GNU Affero General Public License v3.0
9 stars 17 forks source link

Put commands on one line #884

Closed cotsog closed 4 years ago

cotsog commented 4 years ago

Multi-lines aren't supported this way in YAML. See https://yaml-multiline.info/.

Furthermore, the following isn't supported in our YAML DSL:

deploy:
  provider: script
  script:
    - command_1
    - command_2

Commands must be on one line:

deploy:
  provider: script
  script: command_1 && command_2

Otherwise, the best suggestion would be to put your commands in an external script:

deploy:
  provider: script
  script: ./external-script.sh