mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 22:48:17 +00:00
- 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>
14 lines
300 B
Bash
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"
|