Skip to main content

max / makenotwork

1.1 KB · 27 lines History Blame Raw
1 # bento-release-macos driver config.
2 #
3 # Run: bento-release-macos --config driver.toml [--version 0.4.1]
4 #
5 # Drives the macOS release on the build host's in-session ops-agent and pulls
6 # the signed DMG back to this machine (fw13).
7
8 [agent]
9 # The ops-agent's tailnet URL on the Mac build host. Must match the agent's
10 # `listen` address. http (not https): the tailnet (WireGuard) is the transport
11 # security; identity is re-checked by the agent via `tailscale whois`.
12 base_url = "http://100.64.0.2:8765"
13 host_label = "mbp"
14
15 [plan]
16 app = "goingson"
17 version = "0.4.1" # overridable with --version
18 product_name = "GoingsOn" # used for the default DMG name
19 repo_path = "~/Code/Apps/goingson" # checkout ON THE MAC
20 env_file = "~/.tauri/passwords.env" # secrets sourced before the build
21 dist_root = "~/Dist/goingson" # where the signed DMG lands ON THE MAC
22 # dmg_name = "GoingsOn_0.4.1_aarch64.dmg" # optional; default shown
23
24 [local]
25 # Where on THIS host (fw13) to pull the signed DMG to.
26 dest_dir = "~/Dist/goingson"
27