Files
claude-code-viewer/scripts/release.sh
2025-08-31 16:53:02 +09:00

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