# Ensure lockfile is up to date
echo "🔒 Updating lockfile..."
pnpm install --lockfile-only

# Build the action before committing
echo "🔨 Building action..."
pnpm build

# Add the built files and lockfile to the commit
git add entry.js mcp-server.js pnpm-lock.yaml
