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

pipeline: move context to build folder to work around unexpected behaviour #45

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
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ deploy:
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
cd build &&
npx now -t $NOW_TOKEN -T personal -A ../now.staging.json &&
npx now alias -A ../now.staging.json
on:
condition: $TRAVIS_OS_NAME = linux
branch: develop
Expand Down