Skip to content
This repository has been archived by the owner on Apr 9, 2023. It is now read-only.

pipeline: replace new lines in deployment script with spaces #43

Merged
merged 1 commit into from
Oct 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ after_success:
deploy:
- provider: script
skip_cleanup: true
script: |
npx semantic-release --dry-run --branch develop && \
npm run build && \
npx now ./build -t $NOW_TOKEN -T personal -A ./now.staging.json && \
script: >
npx semantic-release --dry-run --branch develop &&
npm run build &&
npx now ./build -t $NOW_TOKEN -T personal -A ./now.staging.json &&
npx now alias -A ./now.staging.json
on:
condition: $TRAVIS_OS_NAME = linux
Expand Down