We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9542a4 commit 01e2d7cCopy full SHA for 01e2d7c
1 file changed
scripts/travis-deploy.sh
@@ -10,9 +10,11 @@ fi
10
11
if [ "$TRAVIS_BRANCH" == "master" ]; then
12
# Deploy to staging on a merge to master
13
- ember deploy staging --verbose --activate
+ ember deploy staging --verbose --activate &> deploy-log.txt
14
15
elif [ -n "$TRAVIS_TAG" ]; then
16
# Deploy to production on a tag
17
- ember deploy production --verbose --activate
+ ember deploy production --verbose --activate &> deploy-log.txt
18
fi
19
+
20
+cat deploy-log.txt
0 commit comments