mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
14 lines
312 B
Bash
14 lines
312 B
Bash
set -e
|
|
pnpm --filter=@photo-gallery/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"
|