Skip to content

Commit 2c129ca

Browse files
committed
Merge branch 'main' of github.com:electric-saw/kafta
2 parents ac80792 + 340dd09 commit 2c129ca

File tree

5 files changed

+38
-115
lines changed

5 files changed

+38
-115
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
name: Release Kafta binaries
1+
name: build
22

33
on:
44
push:
55
tags:
6-
- '*'
6+
- 'v*'
7+
pull_request:
78

89
jobs:
9-
goreleaser:
10+
build:
1011
runs-on: ubuntu-latest
1112
steps:
12-
-
13-
name: Checkout
13+
- name: Checkout
1414
uses: actions/checkout@v2
1515
with:
1616
fetch-depth: 0
17-
-
18-
name: Set up Go
17+
18+
- name: Set up Go
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: 1.15
22-
-
23-
name: Run GoReleaser
24-
uses: goreleaser/goreleaser-action@v2
21+
go-version: 1.17
22+
id: go
23+
24+
- name: Run GoReleaser
25+
uses: goreleaser/goreleaser-action@master
2526
with:
26-
distribution: goreleaser
2727
version: latest
2828
args: release --rm-dist
2929
env:
@@ -33,4 +33,4 @@ jobs:
3333
uses: actions/upload-artifact@v2
3434
with:
3535
name: kafta
36-
path: dist/*
36+
path: dist/*

go.mod

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ require (
66
github.com/Shopify/sarama v1.30.0
77
github.com/Songmu/prompter v0.5.0
88
github.com/dustin/go-humanize v1.0.0
9-
github.com/jedib0t/go-pretty v4.3.0+incompatible
109
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
1110
github.com/manifoldco/promptui v0.8.0
1211
github.com/sirupsen/logrus v1.8.1
@@ -16,15 +15,11 @@ require (
1615
)
1716

1817
require (
19-
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
2018
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
2119
github.com/davecgh/go-spew v1.1.1 // indirect
2220
github.com/eapache/go-resiliency v1.2.0 // indirect
2321
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect
2422
github.com/eapache/queue v1.1.0 // indirect
25-
github.com/go-openapi/errors v0.19.8 // indirect
26-
github.com/go-openapi/strfmt v0.20.3 // indirect
27-
github.com/go-stack/stack v1.8.0 // indirect
2823
github.com/golang/snappy v0.0.4 // indirect
2924
github.com/hashicorp/go-uuid v1.0.2 // indirect
3025
github.com/inconshreveable/mousetrap v1.0.0 // indirect
@@ -38,15 +33,10 @@ require (
3833
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
3934
github.com/mattn/go-colorable v0.0.9 // indirect
4035
github.com/mattn/go-isatty v0.0.12 // indirect
41-
github.com/mattn/go-runewidth v0.0.13 // indirect
42-
github.com/mitchellh/mapstructure v1.4.1 // indirect
43-
github.com/oklog/ulid v1.3.1 // indirect
4436
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
4537
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
46-
github.com/rivo/uniseg v0.2.0 // indirect
4738
github.com/spf13/pflag v1.0.5 // indirect
4839
github.com/xdg/stringprep v1.0.3 // indirect
49-
go.mongodb.org/mongo-driver v1.5.1 // indirect
5040
golang.org/x/crypto v0.0.0-20210920023735-84f357641f63 // indirect
5141
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf // indirect
5242
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect

0 commit comments

Comments
 (0)