-
Notifications
You must be signed in to change notification settings - Fork 0
Build and Release
JumpStart Wiki Bot edited this page Aug 8, 2026
·
1 revision
go install github.com/wailsapp/wails/v2/cmd/wails@v2.13.0
wails dev # Vite + Go, generates frontend/wailsjs
wails build # → build/bin/JumpStart(.app|.exe)
go test ./...Requirements: Go (see go.mod), Node 18+, platform webview deps (macOS CLT; Linux GTK/WebKit; Windows WebView2 + gcc).
version.go:
-
Versiondefault"dev" -
BuildDatedefault"" - Release CI sets both via
-ldflags -X main.Version=… -X main.BuildDate=…
Also stamped: PostHogAPIKey, PostHogHost.
About pane uses GetAboutInfo / GetAppVersion (leading v trimmed for display).
| Workflow | Trigger | Role |
|---|---|---|
build.yml |
workflow_call |
Matrix: Linux amd64, Windows amd64, macOS universal |
release.yml |
tag v* excluding v*-*
|
Stable release |
release-beta.yml |
pre-release tags (v*-*) |
Beta channel |
Build job notes:
- Node 20, Wails
v2.13.0 - Linux:
webkit2_41build tag - macOS: stamp
Info.plistversions before codesign; ad-hoc sign (codesign --sign -) so Gatekeeper offers “Open Anyway” instead of “damaged” - Artifacts named
jumpstart_<tag>_<platform>.(zip|tar.gz) - PostHog key from repo variable
POSTHOG_API_KEY(not a secret) — write-only project key
- Stable updater reads non-prerelease GitHub releases
- Beta (Preferences) considers prerelease tags
- Channel preference is frontend localStorage, reported to Go for analytics
Builds are ad-hoc signed, not notarized. Documented user steps live in README / release notes (Open Anyway once).
Separate Vite app under landing/. Env: VITE_GA_ID, VITE_CLARITY_ID (see landing/.env.example). Not bundled into the desktop binary.
Maintain human notes in RELEASE_NOTES.md; workflow also sets generate_release_notes: true on the GitHub Release.