Skip to content

Commit 734370b

Browse files
committed
goreleaser config changes
1 parent c8176e5 commit 734370b

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ jobs:
4646
uses: goreleaser/goreleaser-action@f82d6c1c344bcacabba2c841718984797f664a6b # v4.2.0
4747
with:
4848
version: latest
49-
args: release --release-notes=output/notes.md --skip-validate
49+
args: release
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ builds:
1414
- amd64
1515
- arm64
1616
- arm
17-
goarm:
18-
- 7
1917
- <<: *build_defaults
2018
id: windows
2119
goos:
@@ -37,8 +35,8 @@ dockers:
3735
- 'ghcr.io/piontec/kube-echo:latest-amd64'
3836
dockerfile: Dockerfile
3937
use: buildx
40-
# goos: linux
41-
# goarch: amd64
38+
goos: linux
39+
goarch: amd64
4240
build_flag_templates:
4341
- "--pull"
4442
- "--label=org.opencontainers.image.created={{ .Date }}"
@@ -52,8 +50,8 @@ dockers:
5250
- 'ghcr.io/piontec/kube-echo:latest-arm64'
5351
dockerfile: Dockerfile
5452
use: buildx
55-
# goos: linux
56-
# goarch: arm64
53+
goos: linux
54+
goarch: arm64
5755
build_flag_templates:
5856
- "--pull"
5957
- "--label=org.opencontainers.image.created={{ .Date }}"
@@ -67,8 +65,8 @@ dockers:
6765
- 'ghcr.io/piontec/kube-echo:latest-arm'
6866
dockerfile: Dockerfile
6967
use: buildx
70-
# goos: linux
71-
# goarch: arm
68+
goos: linux
69+
goarch: arm
7270
build_flag_templates:
7371
- "--pull"
7472
- "--label=org.opencontainers.image.created={{ .Date }}"
@@ -100,6 +98,7 @@ docker_signs:
10098
output: true
10199
source:
102100
enabled: true
101+
rlcp: true
103102
name_template: '{{ .ProjectName }}_{{ .Version }}_src'
104103
sboms:
105104
- artifacts: archive
@@ -124,4 +123,3 @@ signs:
124123
output: true
125124
changelog:
126125
use: github
127-
skip: true

0 commit comments

Comments
 (0)