Skip to content

Commit

Permalink
chore: change github pages script
Browse files Browse the repository at this point in the history
  • Loading branch information
bptodorova committed Nov 18, 2024
1 parent 44940dd commit 92eeb74
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ updates:
labels:
- "Dependencies"

- package-ecosystem: "npm"
- package-ecosystem: "npm"
directory: "/examples/kendo-react-e-commerce-astro-app"
schedule:
interval: "daily"
Expand Down
7 changes: 6 additions & 1 deletion live/bin/build-gh-pages
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ do
rm -rf build
npm run build
mkdir -p ../../live/build/${PROJECT}
mv -v build/* ../../live/build/${PROJECT}

if [ "$PROJECT" = "kendo-react-e-commerce-astro-app" ]; then
mv -v dist/* "../../live/build/${PROJECT}"
else
mv -v build/* "../../live/build/${PROJECT}"
fi

popd > /dev/null
done
Expand Down

0 comments on commit 92eeb74

Please sign in to comment.