Build system, release publishers, and SDK generation
Find a file
Snider 293dfd6e66 feat(build): ENV-first Deno + discovery metadata (os/arch/github ref) + Xcode Cloud
- env.go (new): DENO_ENABLE and DENO_BUILD environment variables activate
  Deno builds even when repo only has package.json or bare frontend/ dir
- wails.go + node.go + apple.go + release.yml + xcode_cloud.go: honor the
  ENV flags across builder + workflow + Xcode Cloud script generation
- discovery.go: record host os/arch + GitHub ref metadata (ref, branch, tag,
  is_tag, sha, short_sha, repo, owner)
- api/provider.go: /discover exposes the new metadata
- Regression coverage across discovery/builders/apple/workflow/xcode_cloud/api

Verified: go test ./... passes

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-14 21:35:50 +01:00
.claude-plugin fix(plugin): remove invalid commands/repository schema from plugin.json 2026-03-13 10:54:44 +00:00
cmd feat(build): ENV-first Deno + discovery metadata (os/arch/github ref) + Xcode Cloud 2026-04-14 21:35:50 +01:00
docs feat(build): action-style upload artifact naming + doc parity 2026-04-14 21:24:17 +01:00
internal feat(build): core build action overrides + workflow forwards RFC controls 2026-04-14 21:01:25 +01:00
locales feat(build): Apple build pipeline per RFC §8 2026-04-14 14:04:31 +01:00
pkg feat(build): ENV-first Deno + discovery metadata (os/arch/github ref) + Xcode Cloud 2026-04-14 21:35:50 +01:00
ui feat(build): distro-aware Wails deps + richer discovery signals 2026-04-14 17:28:04 +01:00
.DS_Store refactor: AX compliance sweep — replace banned stdlib imports with core primitives 2026-04-13 09:32:01 +01:00
.gitignore chore: ignore build cache directory 2026-04-01 19:57:35 +01:00
CLAUDE.md feat(build): action-style upload artifact naming + doc parity 2026-04-14 21:24:17 +01:00
go.mod fix: migrate forge.lthn.ai imports to dappco.re and tidy deps 2026-04-07 14:58:47 +01:00
go.sum fix: migrate forge.lthn.ai imports to dappco.re and tidy deps 2026-04-07 14:58:47 +01:00
LICENSE Initial commit 2026-03-09 12:35:35 +00:00
README.md feat(build): action-style upload artifact naming + doc parity 2026-04-14 21:24:17 +01:00

go-build

dappco.re/go/core/build is the build, release, SDK, Apple packaging, and workflow toolkit behind core build, core release, core sdk, core ci, and the public dAppCore/build@v3 GitHub Action surface.

What It Covers

  • Project discovery across Go, Wails, Node, Deno, PHP, Python, Rust, Docs, Docker, LinuxKit, C++, and Taskfile projects
  • Cross-platform artifact builds with archive and checksum generation
  • Eight release publishers: GitHub, Docker, npm, Homebrew, Scoop, AUR, Chocolatey, and LinuxKit
  • macOS Apple pipeline: core build apple, codesign, notarisation, DMG packaging, TestFlight/App Store submission, Info.plist and entitlements generation, Xcode Cloud scripts
  • OpenAPI SDK generation for TypeScript, Python, Go, and PHP with oasdiff breaking-change checks
  • Reusable release workflow generation via core build workflow

Action/Workflow Parity

The generated reusable workflow mirrors the dAppCore/build@v3 action architecture:

  • Auto-detects stack markers including subtree frontend manifests and MkDocs projects
  • Installs Go, Node, Python, Conan, MkDocs, Deno, and Wails when required
  • Applies distro-aware Linux WebKit dependencies for Wails builds
  • Supports obfuscation, NSIS packaging, WebView2 modes, Deno frontend overrides, and build cache restore/save
  • Uploads workflow artifacts using the action-style naming shape: {build-name}_{os}_{arch}_{tag|shortsha}

Commands

core build
core build apple
core build workflow
core build sdk
core ci

Module

import "dappco.re/go/core/build/pkg/build"

The repository is a library/command-registration module. It does not ship its own standalone binary.