Files
afilmory/scripts/build-update-remote-repo.sh
Innei 604ea15ce6 fix: update build script to use new builder CLI
- Changed the build command in the remote repository update script to utilize the new builder CLI instead of the previous manifest build command.

Signed-off-by: Innei <tukon479@gmail.com>
2025-06-13 17:23:50 +08:00

14 lines
300 B
Bash

set -e
pnpm --filter=@afilmory/builder run cli
cd apps/web/assets-git
echo "git add ."
git add . || true
echo "git commit -m 'chore: update photos-manifest.json and thumbnails'"
git commit -m "chore: update photos-manifest.json and thumbnails" || true
echo "git push"
git push || true
echo "done"