File tree Expand file tree Collapse file tree 4 files changed +25
-31
lines changed Expand file tree Collapse file tree 4 files changed +25
-31
lines changed Original file line number Diff line number Diff line change 88 goreleaser :
99 runs-on : ubuntu-latest
1010 steps :
11- -
12- name : Checkout
13- uses : actions/checkout@v2
11+ - name : Checkout
12+ uses : actions/checkout@v4
1413 with :
1514 fetch-depth : 0
16- -
17- name : Set up Go
18- uses : actions/setup-go@v2
15+
16+ - name : Set up Go
17+ uses : actions/setup-go@v5
1918 with :
20- go-version : 1.17
21- -
22- name : Test
19+ go-version : stable
20+
21+ - name : Test
2322 run : go test ./...
24- -
25- name : Run GoReleaser
26- uses : goreleaser/goreleaser-action@v2
23+
24+ - name : Run GoReleaser
25+ uses : goreleaser/goreleaser-action@v6
2726 with :
28- distribution : goreleaser
2927 version : latest
30- args : release --clean
28+ args : ${{ github.ref_type == 'tag' && ' release' || 'build --snapshot' }} --clean
3129 env :
3230 GITHUB_TOKEN : ${{ secrets.GH_PAT }}
33-
Original file line number Diff line number Diff line change 1+ version : 2
12project_name : curlie
23builds :
3- -
4- binary : curlie
4+ - binary : curlie
55 env :
66 - CGO_ENABLED=0
77 goos :
@@ -14,14 +14,12 @@ builds:
1414 - arm
1515 - arm64
1616 ignore :
17- -
18- goos : windows
17+ - goos : windows
1918 goarch : arm64
2019release :
2120 name_template : " {{.ProjectName}}-v{{.Version}}"
2221brews :
23- -
24- tap :
22+ - repository :
2523 owner : rs
2624 name : homebrew-tap
2725 commit_author :
3028 homepage : https://github.com/rs/curlie
3129 description : The power of curl, the ease of use of httpie.
3230nfpms :
33- -
34- maintainer :
Olivier Poitrey <[email protected] > 31+ -
maintainer :
Olivier Poitrey <[email protected] > 3532 description : curle is a frontend to curl that offers the ease of use of httpie without having to compromise curl features and performance.
3633 license : MIT
3734 formats :
Original file line number Diff line number Diff line change 11module github.com/rs/curlie
22
3+ go 1.24.0
4+
35require (
4- golang.org/x/sys v0.15 .0
5- golang.org/x/term v0.15 .0
6+ golang.org/x/sys v0.30 .0
7+ golang.org/x/term v0.29 .0
68)
7-
8- go 1.13
Original file line number Diff line number Diff line change 1- golang.org/x/sys v0.15 .0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc =
2- golang.org/x/sys v0.15 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
3- golang.org/x/term v0.15 .0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4 =
4- golang.org/x/term v0.15 .0 /go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0 =
1+ golang.org/x/sys v0.30 .0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc =
2+ golang.org/x/sys v0.30 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
3+ golang.org/x/term v0.29 .0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU =
4+ golang.org/x/term v0.29 .0 /go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s =
You can’t perform that action at this time.
0 commit comments