We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3266609 commit 783a095Copy full SHA for 783a095
.travis.yml
@@ -17,7 +17,7 @@ script: 'lerna run test 2>&1'
17
after_failure: 'tail -n +1 -- /home/travis/.npm/_logs/*-debug.log'
18
deploy:
19
provider: script
20
- script: .travis/deploy.sh $TRAVIS_TAG
+ script: ./.travis/deploy.sh $TRAVIS_TAG
21
skip_cleanup: true
22
on:
23
branch: master
.travis/deploy.sh
@@ -1 +1,3 @@
1
- lerna publish --yes --conventional-commits -m "chore(release): publish %s"
+echo "Tag is " $1
2
+lerna publish --yes --conventional-commits -m "chore(release): publish %s"
3
+echo "Published!"
0 commit comments