Skip to content

Commit e433dde

Browse files
committed
fix releases
1 parent bd516d0 commit e433dde

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ jobs:
1717
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
20+
fetch-tags: true
2021

2122
- name: Set up Go
2223
uses: actions/setup-go@v6
2324
with:
24-
go-version: "1.26.0"
25+
go-version-file: go.mod
2526

2627
- name: Run tests
2728
run: go test ./...

.goreleaser.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ checksum:
4747
algorithm: sha256
4848

4949
changelog:
50-
use: github
50+
use: git
5151
sort: asc
5252
abbrev: 7
5353
filters:
@@ -66,21 +66,21 @@ changelog:
6666
- title: Others
6767
order: 999
6868

69-
brews:
69+
homebrew_casks:
7070
- name: bndry
71+
ids:
72+
- bndry-archive
7173
repository:
7274
owner: ofkm
7375
name: homebrew-tap
7476
branch: main
7577
token: '{{ .Env.TAP_GITHUB_TOKEN }}'
76-
directory: Formula
78+
directory: Casks
79+
binaries:
80+
- bndry
81+
commit_msg_template: 'Brew cask update for {{ .ProjectName }} version {{ .Tag }}'
7782
homepage: 'https://github.com/ofkm/bndry'
7883
description: 'Friendly CLI wrapper for HashiCorp Boundary focused on SSH workflows'
79-
license: 'Apache License 2.0'
80-
test: |
81-
system "#{bin}/bndry --help"
82-
install: |
83-
bin.install "bndry"
8484

8585
release:
8686
github:

0 commit comments

Comments
 (0)