Conversation
- Added a new GitHub Actions workflow for building the Electron app on multiple platforms (macOS, Windows, Linux) with support for architecture-specific builds. - Implemented steps for checking out the code, setting up Node.js, installing dependencies, running tests, and building the app. - Configured artifact upload for various build outputs including .dmg, .zip, .exe, .AppImage, .deb, and .rpm. - Created a FUNDING.yml file to support various funding platforms, allowing users to contribute to the project. - Updated package.json to reflect changes in app ID and build targets for different platforms.
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 a GitHub Actions workflow for building and releasing the Electron app, updates the app's build configuration to support multiple platforms and architectures, and adds project metadata and funding configuration. The main focus is on automating and expanding the release process and improving project documentation.
CI/CD and Release Automation:
.github/workflows/build-release.yml) to automatically build and test the Electron app for macOS (x64, arm64), Windows (x64), and Linux (x64) on release or manual dispatch, and to upload build artifacts to GitHub Releases.Build Configuration and Packaging:
package.jsonbuild section to support multiple output formats and architectures for macOS (DMG, ZIP for x64 and arm64), Windows (NSIS for x64), and Linux (AppImage and DEB for x64). Also configures NSIS installer options and adjusts the app ID. [1] [2]Project Metadata and Documentation:
package.jsonfor better project documentation..github/FUNDING.ymlto enable and document various funding/sponsorship options for the project, including a custom PayPal link.