Skip to content

Commit b4f3a0d

Browse files
committed
fix(ci): ignore nightly tags when comparing stable releases
1 parent 650f192 commit b4f3a0d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.goreleaser.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
before:
22
hooks:
33
- go mod tidy
4+
5+
git:
6+
ignore_tags:
7+
- "{{ if not .IsNightly }}nightly{{ end }}"
8+
49
builds:
510
- binary: shiori
611
env:
@@ -26,6 +31,7 @@ builds:
2631
goarch: arm
2732
- goos: windows
2833
goarch: arm64
34+
2935
archives:
3036
- id: shiori
3137
name_template: >-
@@ -47,8 +53,10 @@ archives:
4753

4854
checksum:
4955
name_template: 'checksums.txt'
56+
5057
snapshot:
5158
name_template: "{{ incpatch .Version }}-next"
59+
5260
changelog:
5361
sort: asc
5462
groups:
@@ -79,5 +87,6 @@ changelog:
7987
exclude:
8088
- "^deps:"
8189
- "^chore\\(deps\\):"
90+
8291
release:
8392
prerelease: auto

0 commit comments

Comments
 (0)