mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 09:21:39 +00:00
* refactor: rename project from onsonr/sonr to sonr-io/snrd (#1249) * refactor: rename project from onsonr/sonr to sonr-io/snrd * refactor: update package paths to use sonr-io org --------- Co-authored-by: Prad N <prad@didao.xyz> * feat: introduce devbox for consistent development environment * feat: integrate Doppler for secrets management * feat: streamline release process with Devbox * <no value> * bump: version 0.6.3 → 0.6.4 * feat: enable commit-less version bumping * bump: version 0.6.4 → 0.6.5 * feat: streamline release process and update project metadata * feat: streamline build process and configuration * feat: streamline build process by removing release target * bump: version 0.6.5 → 0.6.6 * feat: upgrade to go 1.24 and align binary name * bump: version 0.6.6 → 0.6.7 * feat: streamline release process and update project metadata * bump: version 0.6.3 → 0.6.4 * feat: streamline development and release processes * feat: streamline development and release processes * refactor: streamline release process with Taskfile * feat: enhance goreleaser output with title for better UX * feat: consolidate release notes * bump: version 0.6.3 → 0.6.4 * feat: streamline release process with improved automation * feat: streamline development and release workflow * bump: version 0.6.3 → 0.6.4 * feat: streamline release process with Taskfile and conventional commits * bump: version 0.6.4 → 0.6.5 * feat: enhance Docker image publishing with piped credentials * chore: remove outdated changelog entries * bump: version 0.6.3 → 0.6.4 * feat: improve release process with interactive feedback * feat: enhance release process with real-time version feedback * bump: version 0.6.4 → 0.6.5 * feat: enhance release process with dynamic version display and streamlined automation * bump: version 0.6.3 → 0.6.4 * refactor: streamline release process by removing redundant version display * bump: version 0.6.4 → 0.6.5 * refactor: streamline release process and simplify dev environment * bump: version 0.6.3 → 0.6.4 * ci: simplify PR checks by removing redundant release validation * refactor: consolidate release workflows for improved maintainability * ci: enhance release workflow for automated version publishing --------- Co-authored-by: Prad N <prad@didao.xyz>
99 lines
2.4 KiB
YAML
99 lines
2.4 KiB
YAML
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
|
|
version: 2
|
|
project_name: sonr
|
|
builds:
|
|
- id: sonr
|
|
binary: snrd
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
goamd64:
|
|
- v1
|
|
flags:
|
|
- -mod=readonly
|
|
- -trimpath
|
|
ldflags:
|
|
- -X github.com/cosmos/cosmos-sdk/version.Name=sonr
|
|
- -X github.com/cosmos/cosmos-sdk/version.AppName=snrd
|
|
- -X github.com/cosmos/cosmos-sdk/version.Version={{.Version}}
|
|
- -X github.com/cosmos/cosmos-sdk/version.Commit={{.Commit}}
|
|
- -X "github.com/cosmos/cosmos-sdk/version.BuildTags=netgo,ledger"
|
|
tags:
|
|
- netgo
|
|
- ledger
|
|
|
|
archives:
|
|
- id: sonr
|
|
name_template: >-
|
|
sonr_{{ .Os }}_{{- if eq .Arch "amd64" }}x86_64
|
|
{{- else if eq .Arch "386" }}i386
|
|
{{- else }}{{ .Arch }}{{ end }}
|
|
formats: ["tar.gz"]
|
|
files:
|
|
- src: README*
|
|
wrap_in_directory: true
|
|
|
|
nfpms:
|
|
- id: sonr
|
|
package_name: snrd
|
|
file_name_template: "sonr_{{ .Os }}_{{ .Arch }}{{ .ConventionalExtension }}"
|
|
vendor: Sonr
|
|
homepage: "https://sonr.io"
|
|
maintainer: "Sonr <support@sonr.io>"
|
|
description: "Sonr is a decentralized, permissionless, and censorship-resistant identity network."
|
|
license: "Apache 2.0"
|
|
formats:
|
|
- rpm
|
|
- deb
|
|
- apk
|
|
dependencies:
|
|
- ipfs
|
|
contents:
|
|
- src: README*
|
|
dst: /usr/share/doc/snrd
|
|
bindir: /usr/bin
|
|
section: net
|
|
priority: optional
|
|
# Add these lines to match build config
|
|
|
|
brews:
|
|
- name: snrd
|
|
ids: [sonr]
|
|
commit_author:
|
|
name: goreleaserbot
|
|
email: bot@goreleaser.com
|
|
directory: Formula
|
|
caveats: "Run a local sonr node and access it with the hway proxy"
|
|
homepage: "https://sonr.io"
|
|
description: "Sonr is a decentralized, permissionless, and censorship-resistant identity network."
|
|
dependencies:
|
|
- name: ipfs
|
|
repository:
|
|
owner: sonr-io
|
|
name: homebrew-tap
|
|
branch: master
|
|
token: "{{ .Env.GITHUB_PAT_TOKEN }}"
|
|
|
|
release:
|
|
github:
|
|
owner: sonr-io
|
|
name: snrd
|
|
name_template: "{{ .Tag }}"
|
|
draft: false
|
|
replace_existing_draft: true
|
|
replace_existing_artifacts: true
|
|
extra_files:
|
|
- glob: ./README*
|
|
- glob: ./scripts/install.sh
|
|
- glob: ./scripts/test_node.sh
|
|
- glob: ./scripts/test_ics_node.sh
|
|
|
|
announce:
|
|
telegram:
|
|
enabled: true
|
|
chat_id: -1002222617755
|