fix: update git add command to only include package.json

This commit is contained in:
Sebastian Espei
2026-03-30 16:02:57 +02:00
parent 2e8cd3fafd
commit 4eb4efffa2

View File

@@ -76,7 +76,7 @@ function main() {
console.log(`📦 Updated version to ${newVersion}`); console.log(`📦 Updated version to ${newVersion}`);
// 2. Add and commit changes // 2. Add and commit changes
execSync('git add package.json *.html src/pages/*.html', { execSync('git add package.json', {
stdio: 'inherit', stdio: 'inherit',
}); });
execSync(`git commit -m "Release v${newVersion}"`, { stdio: 'inherit' }); execSync(`git commit -m "Release v${newVersion}"`, { stdio: 'inherit' });