feat: release v1.1.0 with enhancements and refactoring
Docker images / prepare-release (push) Failing after 7s
Docker images / backend-image (push) Has been skipped
Docker images / frontend-image (push) Has been skipped
Docker images / updater-image (push) Has been skipped
Docker images / publish-release (push) Has been skipped
Docker images / notify-webhook (push) Has been skipped

- Updated application version to 1.1.0, reflecting new features and improvements.
- Enhanced release management by allowing Docker images to be built even when no new commits are present since the last tag.
- Implemented new features including database backup and restore functionality, improved network configuration handling, and enhanced UI feedback with toast notifications.
- Refactored code to replace custom API fetch logic with a utility function for better maintainability.
- Streamlined Docker workflows and improved build efficiency through various configuration updates.
This commit is contained in:
Denozordec
2026-05-12 17:28:13 +07:00
parent 9ccc8459d7
commit 4b92a6eb81
5 changed files with 226 additions and 14 deletions
+2 -2
View File
@@ -169,9 +169,9 @@ function writeGithubOutput(values) {
function main() {
const latestTag = getLatestTag()
const baseFromTag = latestTag?.replace(/^v/, "") ?? baseVersion
const commits = latestTag ? getCommitsSince(latestTag) : []
const commits = getCommitsSince(latestTag)
if (!latestTag || commits.length === 0) {
if (commits.length === 0) {
mkdirSync(outputDir, { recursive: true })
writeFileSync(join(outputDir, "release_notes.md"), "", "utf8")
writeFileSync(