You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
```
0 commit comments