Skip to content

Commit a86b0a9

Browse files
committed
fix(workspace): bash script echo
1 parent 6b219aa commit a86b0a9

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.travis-deploy.sh

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env bash
22

3-
echo Deploy demo to GitHub Pages & publish library to npm - INIT
3+
echo "Deploy demo to GitHub Pages and publish library to npm - INIT"
44

55
# only deploy tags
66
if [ -z "$TRAVIS_TAG" ]; then
77

8-
echo Deploy demo to GitHub Pages & publish library to npm - SKIP
8+
echo "Deploy demo to GitHub Pages and publish library to npm - SKIP"
99

1010
else
1111

12-
echo Deploy demo to GitHub Pages & publish library to npm - START
12+
echo "Deploy demo to GitHub Pages and publish library to npm - START"
1313

1414
# go to the directory which contains build artifacts and create a *new* Git repo
1515
# directory may be different based on your particular build process
@@ -32,18 +32,19 @@ else
3232
# tokens GH_TOKEN and GH_REF will be provided as Travis CI environment variables
3333
git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1
3434

35-
echo Deploy demo to GitHub Pages - SUCCESS
35+
echo "Deploy demo to GitHub Pages - SUCCESS"
3636

3737

3838
# Publish lib to npm
39-
echo Publish elements library to npm - START
39+
echo "Publish elements library to npm - START"
4040

4141
cd ..
4242
cd elements
43+
4344
npm publish ./dist --access public"
4445
45-
echo Publish elements library to npm - SUCCESS
46+
echo "Publish elements library to npm - SUCCESS"
4647
4748
fi
4849
49-
echo Deploy to demo GitHub Pages - Finish
50+
echo "Deploy to demo GitHub Pages - Finish"

0 commit comments

Comments
 (0)