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:
parent
b228482694
commit
e2ba5c7b62
1 changed files with 12 additions and 0 deletions
|
|
@ -184,6 +184,12 @@ services:
|
||||||
cp -r "$WS/web-app/src/." /app/web-app/src/
|
cp -r "$WS/web-app/src/." /app/web-app/src/
|
||||||
echo "webapp/src updated from workspace"
|
echo "webapp/src updated from workspace"
|
||||||
fi
|
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
|
# Overlay @harb/web3 shared package from workspace
|
||||||
if [ -d "$WS/packages/web3" ]; then
|
if [ -d "$WS/packages/web3" ]; then
|
||||||
|
|
@ -232,6 +238,12 @@ services:
|
||||||
cp -r "$WS/landing/src/." /app/landing/src/
|
cp -r "$WS/landing/src/." /app/landing/src/
|
||||||
echo "landing/src updated from workspace"
|
echo "landing/src updated from workspace"
|
||||||
fi
|
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
|
# Overlay @harb/web3 shared package
|
||||||
if [ -d "$WS/packages/web3" ]; then
|
if [ -d "$WS/packages/web3" ]; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue