Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update goreleaser config to v2 #81

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*.dylib
fabfile.py
fabfile.pyc
deploy/
deploy
rp-indexer

# Test binary, build with `go test -c`
Expand All @@ -19,4 +19,5 @@ rp-indexer

*~

.DS_Store
.DS_Store
dist/
20 changes: 20 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
builds:
- main: ./cmd/rp-indexer/main.go
binary: rp-indexer
goos:
- darwin
- linux
goarch:
- amd64
- arm64

changelog:
filters:
exclude:
- "^Update CHANGELOG.md"

archives:
- files:
- LICENSE
- README.md
1 change: 0 additions & 1 deletion deploy

This file was deleted.

19 changes: 0 additions & 19 deletions goreleaser.yml

This file was deleted.

Loading