mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
* feat: add authentication middleware * feat: add REST API endpoints for database interactions * refactor: move DiscoveryDocument Pkl schema to oidc module * fix: replace sonrd with test_node.sh * feat: use NFT keeper to mint DID namespace NFT * refactor: move NFT class configuration to types * feat: add GlobalIntegrity genesis state * fix: ensure GlobalIntegrity is initialized in genesis * refactor: update all references to transactions module * refactor: improve genesis state struct * chore(did): update discovery endpoint to reflect base url * feat: remove unused context cache and client code * refactor: remove middleware dependency from keeper * feat: Add new query handlers for DID module * feat: Implement unimplemented params queries * feat: add support for first-party caveats * refactor: move motr command to cmd directory * feat: add support for GitHub releases * fix(motr): build app.wasm for motr package * feat: add card component * feat: add IndexedDB support for persistent storage * feat: Add Row and Column components * feat: add and components * refactor: improve button component * refactor: remove unnecessary button parameter in renderButton * feat: add vault service endpoint * feat: add input component
73 lines
2.2 KiB
YAML
73 lines
2.2 KiB
YAML
project_name: core
|
|
|
|
release:
|
|
github:
|
|
owner: onsonr
|
|
name: core
|
|
name_template: "{{.Tag}}"
|
|
|
|
# Only uncomment os, arch, and targets if you are NOT using cosmwasm / wasm-light-client.
|
|
# Windows, 386 (32bit), and ARM are not Wasm compatible.
|
|
builds:
|
|
- id: core
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
main: ./cmd/sonrd
|
|
binary: sonrd
|
|
builder: go
|
|
gobinary: go
|
|
command: build
|
|
ldflags:
|
|
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
|
|
archives:
|
|
- id: default
|
|
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
|
|
format: tar.gz
|
|
files:
|
|
- src: LICENSE*
|
|
- src: README*
|
|
- src: CHANGELOG*
|
|
snapshot:
|
|
name_template: "{{ .Version }}-SNAPSHOT-{{ .ShortCommit }}"
|
|
checksum:
|
|
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"
|
|
algorithm: sha256
|
|
dist: dist
|
|
env_files:
|
|
github_token: ~/.config/goreleaser/github_token
|
|
gitlab_token: ~/.config/goreleaser/gitlab_token
|
|
gitea_token: ~/.config/goreleaser/gitea_token
|
|
source:
|
|
name_template: "{{ .ProjectName }}-{{ .Version }}"
|
|
format: tar.gz
|
|
gomod:
|
|
gobinary: go
|
|
announce:
|
|
twitter:
|
|
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"
|
|
mastodon:
|
|
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"
|
|
server: ""
|
|
reddit:
|
|
title_template: "{{ .ProjectName }} {{ .Tag }} is out!"
|
|
url_template: "{{ .ReleaseURL }}"
|
|
discord:
|
|
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"
|
|
author: GoReleaser
|
|
color: "3888754"
|
|
icon_url: https://goreleaser.com/static/avatar.png
|
|
telegram:
|
|
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"
|
|
webhook:
|
|
message_template: '{ "message": "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"}'
|
|
content_type: application/json; charset=utf-8
|
|
git:
|
|
tag_sort: -version:refname
|
|
github_urls:
|
|
download: https://github.com
|
|
gitlab_urls:
|
|
download: https://gitlab.com
|