15 lines
329 B
Bash
15 lines
329 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -Eeuo pipefail
|
||
|
|
|
||
|
|
COZE_WORKSPACE_PATH="${COZE_WORKSPACE_PATH:-$(pwd)}"
|
||
|
|
|
||
|
|
cd "${COZE_WORKSPACE_PATH}"
|
||
|
|
|
||
|
|
echo "Installing dependencies..."
|
||
|
|
pnpm install --prefer-frozen-lockfile --prefer-offline --loglevel debug --reporter=append-only
|
||
|
|
|
||
|
|
echo "Building the project..."
|
||
|
|
npx next build
|
||
|
|
|
||
|
|
echo "Build completed successfully!"
|