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 01c988f commit b06cbe2Copy full SHA for b06cbe2
.travis.yml
@@ -7,3 +7,9 @@ script: npm run test -- --coverage
7
cache: yarn
8
after_success:
9
- bash <(curl -s https://codecov.io/bash)
10
+
11
+deploy:
12
+ provider: script
13
+ script: scripts/deploy.sh
14
+ on:
15
+ branch: master
scripts/deploy.sh
@@ -0,0 +1,9 @@
1
+echo "Installing now-pipeline"
2
+npm install -g now-pipeline
3
4
+echo "Prune old instances"
5
+now-pipeline-prune
6
+echo "Deploy and alias new instance"
+now-pipeline --test 'curl --fail $NOW_URL/test?inc=false' --alias internal.micro-analytics.io
0 commit comments