ci: overlay @harb/ui-shared in webapp and landing CI services (#150)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
openhands 2026-02-24 14:03:11 +00:00
parent b228482694
commit e2ba5c7b62

View file

@ -184,6 +184,12 @@ services:
cp -r "$WS/web-app/src/." /app/web-app/src/
echo "webapp/src updated from workspace"
fi
for f in vite.config.ts vite.config.js; do
if [ -f "$WS/web-app/$f" ]; then
cp "$WS/web-app/$f" /app/web-app/"$f"
echo "webapp/$f updated from workspace"
fi
done
# Overlay @harb/web3 shared package from workspace
if [ -d "$WS/packages/web3" ]; then
@ -232,6 +238,12 @@ services:
cp -r "$WS/landing/src/." /app/landing/src/
echo "landing/src updated from workspace"
fi
for f in vite.config.ts vite.config.js; do
if [ -f "$WS/landing/$f" ]; then
cp "$WS/landing/$f" /app/landing/"$f"
echo "landing/$f updated from workspace"
fi
done
# Overlay @harb/web3 shared package
if [ -d "$WS/packages/web3" ]; then