Skip to content

Commit f712983

Browse files
committed
add goreleaser
1 parent 9f204aa commit f712983

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pod-tzzh-aws
22
.lsp/
33
.clj-kondo/
4+
dist/

.goreleaser.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
before:
2+
hooks:
3+
- go mod download
4+
- go generate ./...
5+
- go fmt aws/aws.go
6+
builds:
7+
- env:
8+
- CGO_ENABLED=0
9+
goos:
10+
- linux
11+
- windows
12+
- darwin
13+
archives:
14+
- replacements:
15+
darwin: Darwin
16+
linux: Linux
17+
windows: Windows
18+
386: i386
19+
amd64: x86_64
20+
checksum:
21+
name_template: 'checksums.txt'
22+
changelog:
23+
sort: asc
24+
filters:
25+
exclude:
26+
- '^docs:'
27+
- '^test:'

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Currently most dynamodb and s3 functions are supported (adding other services sh
1010

1111
## Usage
1212

13-
Compile the pod by running `go build`, then:
13+
Get the latest release and then:
1414
``` clojure
1515
(require '[babashka.pods])
1616
(babashka.pods/load-pod ["./pod-tzzh-aws"])

0 commit comments

Comments
 (0)