Skip to content

Commit 91fec0b

Browse files
committed
fix: ignore lack of a changelog when publishing to gh-pages
1 parent 210b157 commit 91fec0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis/gh-pages.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ git reset upstream/$TARGET_BRANCH
3232

3333
# Add all files & ./dist to the new commit.
3434
git add -A
35-
git add CHANGELOG.md ./dist ./types/index.d.ts -f
35+
# git add CHANGELOG.md ./dist ./types/index.d.ts -f
36+
git add ./dist ./types/index.d.ts -f
3637

3738
git commit -m "${TARGET_BRANCH}: (${VERSION}) ${SHA}"
3839
git push -q upstream HEAD:$TARGET_BRANCH

0 commit comments

Comments
 (0)