Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 ```
- Loading branch information