Files
theta-agent/.github/workflows/release.yml
T
wmantly 98daa81a92 ci(release): build every binary on GitHub and attach to releases
Per decision: no binaries committed to the repo; everything is built on GitHub
Actions and hosted as release artifacts (releases/latest/download/<artifact>).

- .github/workflows/release.yml: matrix builds the agent for
  linux(amd64/arm64/armv7), windows(amd64/arm64), darwin(amd64/arm64); tray for
  linux/windows; helper for windows; the fully-offline Inno setup.exe compiles on
  a windows runner via scripts/setup-build-env.ps1 -SkipGo -Build -CI. The
  publish job merges everything, writes SHA256SUMS, optionally signs with Azure
  Trusted Signing (secret-gated), and attaches to the tag's release.
- Replaces build-windows.yml (removed) — one release pipeline for all platforms.
- Untracks the committed dist binaries (they stay gitignored for local dev and
  are produced by CI now).
- DESIGN-WINDOWS.md §9 updated: consumers (install.sh, the SSO modal) download
  from GitHub release artifacts; SSO may mirror them into /resources for air-gap.
2026-08-09 19:40:12 -07:00

141 lines
4.5 KiB
YAML

name: release
# Builds every theta-agent binary on GitHub and attaches them to the release as
# artifacts (DESIGN-WINDOWS.md §9, and the "host binaries as release artifacts"
# decision): the agent for linux/windows/darwin, the tray for linux/windows,
# the session helper for windows, and the fully-offline Inno setup.exe. Nothing
# binary is committed to the repo; consumers (install.sh, the SSO Install Agent
# modal) download from releases/latest/download/<artifact>.
#
# git tag v2.1.0 && git push origin v2.1.0
# -> builds all binaries, compiles the installer, attaches everything
on:
push:
tags: ["v*"]
workflow_dispatch:
env:
GO_VERSION: "1.22.2"
jobs:
build-agent:
name: agent-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.goarm }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- goos: linux
goarch: amd64
artifact: theta-agent-linux-amd64
- goos: linux
goarch: arm64
artifact: theta-agent-linux-arm64
- goos: linux
goarch: arm
goarm: "7"
artifact: theta-agent-linux-armv7
- goos: windows
goarch: amd64
artifact: theta-agent-windows-amd64.exe
- goos: windows
goarch: arm64
artifact: theta-agent-windows-arm64.exe
- goos: darwin
goarch: amd64
artifact: theta-agent-darwin-amd64
- goos: darwin
goarch: arm64
artifact: theta-agent-darwin-arm64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
shell: bash
run: |
CGO_ENABLED=0 GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} GOARM=${{ matrix.goarm }} \
go build -ldflags="-s -w" -o dist/${{ matrix.artifact }} .
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: dist/${{ matrix.artifact }}
if-no-files-found: error
build-desktop:
name: tray/helper/setup
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
# One idempotent script: installs per-user Inno Setup, fetches the
# checksum-verified vendor assets, builds agent/tray/helper for windows
# amd64+arm64, runs go test, and compiles the offline setup.exe.
- name: Build windows artifacts + installer
shell: pwsh
run: |
powershell -NoProfile -ExecutionPolicy Bypass -File scripts/setup-build-env.ps1 -SkipGo -Build -CI
if ($LASTEXITCODE -ne 0) { throw "setup-build-env failed" }
- name: Upload windows artifacts
uses: actions/upload-artifact@v4
with:
name: windows-desktop
path: |
dist/theta-agent-tray-windows-*.exe
dist/theta-agent-helper-windows-*.exe
dist/theta-agent-windows-*.exe
dist/theta-agent-*-setup.exe
if-no-files-found: error
publish:
name: Attach to GitHub release
needs: [build-agent, build-desktop]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Generate SHA256SUMS
shell: bash
run: |
cd dist
sha256sum * | tee SHA256SUMS
# Optional Azure Trusted Signing (OIDC federation). Runs only when the
# Azure secrets are configured; otherwise the artifacts ship unsigned.
- name: Sign with Azure Trusted Signing
if: env.AZURE_TENANT_ID != ''
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: AzureSignTool
if: env.AZURE_TENANT_ID != ''
uses: azure/trusted-signing-action@v0.4.0
with:
endpoint: ${{ secrets.AZURE_TS_ENDPOINT }}
trusted-signing-account-name: ${{ secrets.AZURE_TS_ACCOUNT }}
certificate-profile-name: ${{ secrets.AZURE_TS_CERT_PROFILE }}
files: dist/**
- name: Attach to release
uses: softprops/action-gh-release@v2
with:
files: dist/**
fail_on_unmatched_files: false