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
36 changes: 29 additions & 7 deletions .github/workflows/build-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,24 @@ permissions:

jobs:
build:
name: Build ${{ matrix.arch }}
name: Build ${{ matrix.platform }}-${{ matrix.arch }}
strategy:
matrix:
include:
# Linux
- os: ubuntu-latest
arch: x86_64
platform: linux
- os: ubuntu-24.04-arm
arch: arm64
platform: linux
# macOS
- os: macos-15-intel
arch: x86_64
platform: darwin
- os: macos-15
arch: arm64
platform: darwin

runs-on: ${{ matrix.os }}

Expand All @@ -42,8 +52,8 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v5
with:
name: shannot-binary-${{ matrix.arch }}
path: dist/shannot-linux-${{ matrix.arch }}
name: shannot-binary-${{ matrix.platform }}-${{ matrix.arch }}
path: dist/shannot-${{ matrix.platform }}-${{ matrix.arch }}

upload-release:
name: Upload to GitHub Release
Expand All @@ -54,16 +64,28 @@ jobs:
contents: write

steps:
- name: Download x86_64 binary
- name: Download Linux x86_64 binary
uses: actions/download-artifact@v7
with:
name: shannot-binary-linux-x86_64
path: dist/

- name: Download Linux arm64 binary
uses: actions/download-artifact@v7
with:
name: shannot-binary-linux-arm64
path: dist/

- name: Download macOS x86_64 binary
uses: actions/download-artifact@v7
with:
name: shannot-binary-x86_64
name: shannot-binary-darwin-x86_64
path: dist/

- name: Download arm64 binary
- name: Download macOS arm64 binary
uses: actions/download-artifact@v7
with:
name: shannot-binary-arm64
name: shannot-binary-darwin-arm64
path: dist/

- name: Upload to GitHub Release
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.6] - 2025-12-26

### Features

- Add macOS binary builds for both Intel (x86_64) and Apple Silicon (arm64)
- Binaries: `shannot-darwin-x86_64`, `shannot-darwin-arm64`
- Built with Nuitka `--onefile` mode (same as Linux)

## [0.8.5] - 2025-12-26

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "shannot"
version = "0.8.5"
version = "0.8.6"
description = "Sandboxed system administration for LLM agents"
readme = "README.md"
license = {text = "Apache-2.0"}
Expand Down
Loading