feat: setup ci/cd pipelines - #48
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces comprehensive improvements to the project's CI/CD pipeline and release automation. It adds new GitHub Actions workflows for Node.js CI and multi-platform release, and introduces several scripts to automate version checks and artifact collection for releases.
CI/CD Workflow Enhancements:
.github/workflows/node.ymlto run Node.js CI across macOS, Ubuntu, and Windows, including Rust toolchain setup, dependency installation, linting, auditing, testing, coverage upload, build, and Tauri app packaging..github/workflows/release.ymlfor automated multi-platform release builds (macOS, Windows, Linux), including Apple certificate import for signing, artifact collection, changelog generation, and GitHub release publishing.Release & Artifact Automation Scripts:
scripts/check-version.shto check if the current package version is already tagged in git, determining if a new release is needed and outputting results for GitHub Actions.scripts/collect-binaries.shto gather built binaries and generate platform-specific updater manifests (latest-*.json) for each target OS, including signature handling.scripts/collect-updater-manifests.shto aggregate all platform updater manifests into a singlelatest.jsonand clean up intermediate files.