mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-19 14:24:20 +01:00
17 lines
204 B
Bash
Executable File
17 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
if [ -d "dist/.next" ]; then
|
|
rm -rf dist/.next
|
|
fi
|
|
|
|
pnpm build
|
|
|
|
cp -r .next/standalone ./dist/
|
|
|
|
git add dist
|
|
git commit -m "chore: Release"
|
|
|
|
git push origin HEAD
|