Projects STRLCPY bearer Commits 96cb240f
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    goreleaser/publish_brew.yaml
     1 +project_name: curio
     2 + 
     3 +before:
     4 + hooks:
     5 + - go mod tidy
     6 + - go generate ./...
     7 + 
     8 +builds:
     9 + - id: curio-macos-build
     10 + main: ./cmd/curio
     11 + binary: curio
     12 + env:
     13 + - CGO_ENABLED=1
     14 + goos:
     15 + - darwin
     16 + goarch:
     17 + - amd64
     18 + - arm64
     19 + ldflags:
     20 + - -s -w
     21 + - -X "github.com/bearer/curio/cmd/curio/build.Version={{.Version}}"
     22 + - -X "github.com/bearer/curio/cmd/curio/build.CommitSHA={{.Commit}}"
     23 + 
     24 +archives:
     25 + - id: macos-archive
     26 + builds:
     27 + - curio-macos-build
     28 + 
     29 +release:
     30 + ids:
     31 + - none
     32 + 
     33 +brews:
     34 + - # Name template of the recipe
     35 + name: curio
     36 + folder: Formula
     37 + install: bin.install "curio"
     38 + tap:
     39 + owner: Bearer
     40 + name: homebrew-curio
     41 + token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
     42 + 
     43 + commit_author:
     44 + name: bearer
     45 + email: [email protected]
     46 + 
     47 + commit_msg_template: "chore: Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
     48 + 
     49 + homepage: "https://curio.sh"
     50 + 
     51 + license: "Elastic License 2.0"
     52 + 
     53 + description: "A data-first security scanner that finds risks and vulnerabilities in your code so you can protect sensitive data (PHI, PD, PII)."
     54 + 
Please wait...
Page is in error, reload to recover