From ac34433314f3e03568368f00f5571bdf57ad0853 Mon Sep 17 00:00:00 2001 From: abs3nt Date: Sat, 4 Mar 2023 15:29:05 -0800 Subject: [PATCH] ci: add github release --- .githubrelease.yaml | 54 +++++++++++++++++++++++++++++++++++++++++++++ .woodpecker.yml | 7 ++++++ 2 files changed, 61 insertions(+) create mode 100644 .githubrelease.yaml diff --git a/.githubrelease.yaml b/.githubrelease.yaml new file mode 100644 index 0000000..a6618cb --- /dev/null +++ b/.githubrelease.yaml @@ -0,0 +1,54 @@ +before: + hooks: + - go mod tidy + +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin + ignore: + - goos: windows + goarch: "386" + +archives: + - format: tar.gz + name_template: >- + {{ .ProjectName }}_ + {{- title .Os }}_ + {{- if eq .Arch "amd64" }}x86_64 + {{- else if eq .Arch "386" }}i386 + {{- else }}{{ .Arch }}{{ end }} + {{- if .Arm }}v{{ .Arm }}{{ end }} + format_overrides: + - goos: windows + format: zip + files: + - completions/* + rlcp: true +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + groups: + - title: 'New Features' + regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$' + order: 0 + - title: 'Bug fixes' + regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$' + order: 1 + - title: 'Enhancements' + regexp: '^.*?improved(\([[:word:]]+\))??!?:.+$' + order: 1 + - title: 'Docs' + regexp: '^.*?doc(\([[:word:]]+\))??!?:.+$' + order: 1 + - title: 'CI' + regexp: '^.*?ci(\([[:word:]]+\))??!?:.+$' + order: 1 + - title: Others + order: 999 diff --git a/.woodpecker.yml b/.woodpecker.yml index 73fd4a2..4fa93c4 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -15,4 +15,11 @@ pipeline: secrets: [ gitea_token ] when: event: tag + publish-github: + image: goreleaser/goreleaser + commands: + - goreleaser release --config .githubrelease.yaml + secrets: [ gitea_token ] + when: + event: tag