Files
afilmory/scripts/build-update-remote-repo.sh
Innei 8f28d75266 chore: change namespace
Signed-off-by: Innei <tukon479@gmail.com>
2025-06-12 21:51:25 +08:00

14 lines
307 B
Bash

set -e
pnpm --filter=@afilmory/web run build:manifest
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"