]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Remove css from deploy scripts (#7131)
authorBen McCann <322311+benmccann@users.noreply.github.com>
Thu, 20 Feb 2020 14:42:06 +0000 (06:42 -0800)
committerGitHub <noreply@github.com>
Thu, 20 Feb 2020 14:42:06 +0000 (09:42 -0500)
scripts/deploy.sh
scripts/release.sh

index d7717b23cdb3006436b50bc3455048e2c0305176..f3212b4fccf9f46d1a635c172c4b6490f7241ea3 100755 (executable)
@@ -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'
index 13686b4d7e91a30f05b71b7188b448b18c53bc0c..4dcc2c6b54df7f86b20b8ae2586ae498cbc59f09 100755 (executable)
@@ -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