chore: add release script

This commit is contained in:
d-kimsuon
2025-08-31 16:53:02 +09:00
parent be9914670c
commit 64489e3f8b
3 changed files with 25 additions and 0 deletions

16
scripts/release.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/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