diff --git a/.core/build.yaml b/.core/build.yaml new file mode 100644 index 0000000..f4665b7 --- /dev/null +++ b/.core/build.yaml @@ -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 diff --git a/.core/release.yaml b/.core/release.yaml new file mode 100644 index 0000000..480d48a --- /dev/null +++ b/.core/release.yaml @@ -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