We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 4425a1f commit 8c20a8dCopy full SHA for 8c20a8d
.circleci/website.sh
@@ -3,7 +3,7 @@
3
set -e
4
5
git diff-tree --no-commit-id --name-only -r HEAD > files_changed.txt
6
-if ! grep -E "(^docs\/.*)|(^website\/.*)" files_changed.txt; then
+if ! grep -E "(^docs\/.*)|(^website\/.*)|(^\.circleci/website\.sh$)" files_changed.txt; then
7
echo "Skipping deploy & test. No relevant website files have changed"
8
else
9
echo "Relevant website files have changed"
@@ -30,6 +30,6 @@ else
30
GIT_USER=docusaurus-bot USE_SSH=false yarn publish-gh-pages
31
32
echo "Skipping deploy. Test website build"
33
- cd website && yarn && yarn build
+ cd website && yarn && node fetchSupporters.js && yarn build
34
fi
35
0 commit comments