Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/macos-signed-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- platform: macos-15
target: aarch64-apple-darwin
artifact_suffix: macos-aarch64
- platform: macos-15-intel
target: x86_64-apple-darwin
artifact_suffix: macos-x86_64

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -47,7 +50,7 @@ jobs:
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
targets: ${{ matrix.target }}

- name: Rust cache
uses: swatinem/rust-cache@v2
Expand Down
17 changes: 13 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ jobs:
- platform: macos-15
target: aarch64-apple-darwin
artifact_suffix: macos-aarch64
- platform: macos-15-intel
target: x86_64-apple-darwin
artifact_suffix: macos-x86_64
- platform: ubuntu-24.04
target: x86_64-unknown-linux-gnu
artifact_suffix: linux-x86_64
Expand Down Expand Up @@ -230,7 +233,7 @@ jobs:
patchelf

- name: Set up protoc (macOS)
if: matrix.artifact_suffix == 'macos-aarch64'
if: contains(matrix.target, 'apple-darwin')
run: brew install protobuf

- name: Set up protoc (Windows)
Expand Down Expand Up @@ -427,9 +430,15 @@ jobs:
matrix:
include:
- platform: macos-15
target: aarch64-apple-darwin
args: --target aarch64-apple-darwin --config src-tauri/tauri.macos.conf.json -- --bin xero-desktop
artifact_suffix: macos-aarch64
platform_key: darwin-aarch64
- platform: macos-15-intel
target: x86_64-apple-darwin
args: --target x86_64-apple-darwin --config src-tauri/tauri.macos.conf.json -- --bin xero-desktop
artifact_suffix: macos-x86_64
platform_key: darwin-x86_64
- platform: windows-2025-vs2026
args: --bundles nsis -- --bin xero-desktop
artifact_suffix: windows-x86_64
Expand Down Expand Up @@ -489,7 +498,7 @@ jobs:
if: contains(matrix.platform_key, 'darwin')
uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
targets: ${{ matrix.target }}

- name: Set up Rust
if: ${{ !contains(matrix.platform_key, 'darwin') }}
Expand Down Expand Up @@ -523,8 +532,8 @@ jobs:
run: |
set -euo pipefail
case "${{ matrix.platform_key }}" in
darwin-aarch64)
cargo build --release --package xero-desktop-sidecar --target aarch64-apple-darwin
darwin-*)
cargo build --release --package xero-desktop-sidecar --target ${{ matrix.target }}
;;
*)
cargo build --release --package xero-desktop-sidecar
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "my-project",
"version": "0.1.33",
"version": "0.1.34",
"private": true,
"scripts": {
"dev": "vite --host 0.0.0.0 --port 3000",
Expand Down
4 changes: 2 additions & 2 deletions client/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resolver = "2"

[package]
name = "xero-desktop"
version = "0.1.33"
version = "0.1.34"
edition = "2021"
default-run = "xero-desktop"
description = "Xero desktop host"
Expand Down
2 changes: 1 addition & 1 deletion client/src-tauri/crates/xero-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xero-cli"
version = "0.1.33"
version = "0.1.34"
edition = "2021"
description = "Headless Xero CLI backed by xero-agent-core"

Expand Down
2 changes: 1 addition & 1 deletion client/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Xero",
"mainBinaryName": "xero-desktop",
"version": "0.1.33",
"version": "0.1.34",
"identifier": "com.hyperpush.xero",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down