From 77dd329b014ce4446706463252c4147c2d828790 Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 6 Mar 2026 18:52:36 +0000 Subject: [PATCH] chore: add .core/ build and release configs Add go-devops build system configuration for standardised build, test, and release workflows across the Go ecosystem. Co-Authored-By: Virgil --- .core/build.yaml | 25 +++++++++++++++++++++++++ .core/release.yaml | 20 ++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .core/build.yaml create mode 100644 .core/release.yaml diff --git a/.core/build.yaml b/.core/build.yaml new file mode 100644 index 0000000..95a5309 --- /dev/null +++ b/.core/build.yaml @@ -0,0 +1,25 @@ +version: 1 + +project: + name: go-html + description: HTML templating engine + main: ./cmd/wasm + binary: core-html-wasm + +build: + cgo: false + flags: + - -trimpath + ldflags: + - -s + - -w + +targets: + - os: linux + arch: amd64 + - os: linux + arch: arm64 + - os: darwin + arch: arm64 + - os: windows + arch: amd64 diff --git a/.core/release.yaml b/.core/release.yaml new file mode 100644 index 0000000..5a1a9c5 --- /dev/null +++ b/.core/release.yaml @@ -0,0 +1,20 @@ +version: 1 + +project: + name: go-html + repository: core/go-html + +publishers: [] + +changelog: + include: + - feat + - fix + - perf + - refactor + exclude: + - chore + - docs + - style + - test + - ci