Add CI workflow to build Tauri app artifact for PRs and master - #266
Merged
Conversation
Copilot created this pull request from a session on behalf of
OJFord
June 7, 2026 21:10
View session
OJFord
requested changes
Jun 7, 2026
Copilot
AI
changed the title
Add CI workflow to build and publish Tauri artifacts for PRs and master
Add CI workflow to build Tauri app artifact for PRs and master
Jun 7, 2026
OJFord
reviewed
Jul 10, 2026
Contributor
Author
Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
OJFord
force-pushed
the
copilot/add-build-workflow-for-tauri-app
branch
from
August 11, 2026 20:34
c89f97e to
a6cee66
Compare
OJFord
requested changes
Aug 21, 2026
Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
…cking Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
OJFord
reviewed
Aug 21, 2026
| cache: yarn | ||
| cache-dependency-path: eml-client/yarn.lock | ||
|
|
||
| - uses: dtolnay/rust-toolchain@6c977a6ca4077a0ceb28ffbe03f59d46e9ac8772 # v1 (stable) |
Owner
There was a problem hiding this comment.
@copilot this is failing with 'toolchain is a required input' - it was ok with @stable before we pinned
There was a problem hiding this comment.
Pull request overview
Adds a dedicated GitHub Actions workflow to build the Tauri desktop app on PRs and pushes to master, producing a reusable Linux build artifact for downstream automation.
Changes:
- Added a new CI workflow to set up Node + Rust, install Tauri prerequisites, build via
just build-debug, and upload the built binary as an artifact. - Added
eml-client/.node-versionto drive the Node version used by the workflow.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
eml-client/.node-version |
Defines the Node version for CI (setup-node via node-version-file). |
.github/workflows/build.yml |
New build workflow for the Linux Tauri artifact on PRs and master. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
Contributor
Author
OJFord
reviewed
Aug 21, 2026
| }, | ||
| "build": { | ||
| "beforeBuildCommand": "rm -r dist; yarn; yarn run vite:build:debug-${TAURI_ENV_DEBUG}", | ||
| "beforeBuildCommand": "rm -rf dist; yarn; yarn run vite:build:debug-${TAURI_ENV_DEBUG}", |
Co-authored-by: OJFord <3946014+OJFord@users.noreply.github.com>
OJFord
enabled auto-merge (squash)
August 21, 2026 16:42
OJFord
disabled auto-merge
August 21, 2026 16:43
OJFord
enabled auto-merge (squash)
August 21, 2026 16:44
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 adds a dedicated GitHub Actions build workflow for the Tauri desktop app so PRs and
masterproduce a reusable build artifact. It sets up the Linux build environment, uses the existing repo build entrypoint, and uploads the built app binary for later release automation.Workflow scope
.github/workflows/build.ymlmasterBuild job
just,tauri-cli, the repo-specificlibnotmuch-dev, and the Tauri Linux prerequisite packages from the upstream docsArtifact output
just build-debugcommandtarget/debug/amailBuild invocation