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'
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