Remove css from deploy scripts (#7131)

This commit is contained in:
Ben McCann 2020-02-20 06:42:06 -08:00 committed by GitHub
parent 65425a5cb6
commit ee7520b710
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ cd $TARGET_DIR
git checkout $TARGET_BRANCH
# Copy dist files
deploy_files '../dist/*.css ../dist/*.js' './dist'
deploy_files '../dist/*.js' './dist'
# Copy generated documentation
deploy_files '../dist/docs/*' './docs'

View File

@ -21,7 +21,7 @@ git remote add auth-origin https://$GITHUB_AUTH_TOKEN@github.com/$TRAVIS_REPO_SL
git config --global user.email "$GITHUB_AUTH_EMAIL"
git config --global user.name "Chart.js"
git checkout --detach --quiet
git add -f dist/*.css dist/*.js bower.json
git add -f dist/*.js bower.json
git commit -m "Release $VERSION"
git tag -a "v$VERSION" -m "Version $VERSION"
git push -q auth-origin refs/tags/v$VERSION 2>/dev/null