Skip to content

Commit d56938d

Browse files
committed
fix goreleaser
and undo some AI changes 😔
1 parent 864b1c0 commit d56938d

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

.github/goreleaser.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ builds:
1414
- windows
1515
- openbsd
1616
goarch:
17-
- 386
17+
- "386"
1818
- amd64
1919
- arm
2020
- arm64
@@ -26,20 +26,29 @@ builds:
2626
- mips64le
2727
- s390x
2828
goarm:
29-
- 5
30-
- 6
31-
- 7
29+
- "5"
30+
- "6"
31+
- "7"
3232
gomips:
3333
- hardfloat
3434
- softfloat
35+
ignore:
36+
# https://github.com/golang/go/issues/70705
37+
- goos: windows
38+
goarch: arm
3539
nfpms:
36-
- maintainer: "https://github.com/{{ .Env.GITHUB_USER }}"
40+
- maintainer: "https://github.com/jpillora"
3741
formats:
3842
- deb
3943
- rpm
4044
- apk
4145
archives:
42-
- files:
46+
- formats:
47+
- gz
48+
format_overrides:
49+
- goos: windows
50+
formats: [zip]
51+
files:
4352
- none*
4453
release:
4554
draft: true

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ jobs:
1111
name: Build & Test
1212
strategy:
1313
matrix:
14-
# optionally test/build across multiple platforms/Go-versions
15-
go-version: ["1.25.1"] # '1.16', '1.17', '1.18,
14+
go-version: ["stable"]
1615
platform: [ubuntu-latest, macos-latest, windows-latest]
1716
runs-on: ${{ matrix.platform }}
1817
steps:
@@ -42,11 +41,6 @@ jobs:
4241
uses: actions/checkout@v5
4342
with:
4443
fetch-depth: 0
45-
- name: Set up Go
46-
uses: actions/setup-go@v6
47-
with:
48-
go-version: "1.25.1"
49-
check-latest: true
5044
- name: goreleaser
5145
if: success()
5246
uses: docker://goreleaser/goreleaser:latest

0 commit comments

Comments
 (0)