chore: add .core/ build and release configs
All checks were successful
Security Scan / security (push) Successful in 8s
Test / test (push) Successful in 1m11s

Add go-devops build system configuration for standardised
build, test, and release workflows across the Go ecosystem.

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-03-06 18:52:36 +00:00
parent d50175a8b0
commit f59ec29e1f
2 changed files with 45 additions and 0 deletions

25
.core/build.yaml Normal file
View file

@ -0,0 +1,25 @@
version: 1
project:
name: go-forge
description: Forgejo integration
main: ./cmd/forgegen
binary: forgegen
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

20
.core/release.yaml Normal file
View file

@ -0,0 +1,20 @@
version: 1
project:
name: go-forge
repository: core/go-forge
publishers: []
changelog:
include:
- feat
- fix
- perf
- refactor
exclude:
- chore
- docs
- style
- test
- ci