gh.release: ignore the build

This commit is contained in:
He4eT 2025-08-22 07:05:36 +02:00
commit c632b25776
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
node_modules node_modules
docs
# Log files # Log files
npm-debug.log* npm-debug.log*

View file

@ -14,7 +14,7 @@ git checkout -b $RELEASE_BRANCH
rm -rf "$GIT_ROOT/$BUILD_DIR" rm -rf "$GIT_ROOT/$BUILD_DIR"
npm run build npm run build
git add "$GIT_ROOT/$BUILD_DIR" git add -f "$GIT_ROOT/$BUILD_DIR"
git commit -m "release: $CURRENT_TIMESTAMP" git commit -m "release: $CURRENT_TIMESTAMP"
git push -f origin $RELEASE_BRANCH git push -f origin $RELEASE_BRANCH