-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Looks like our config was outdated, and workflow used deprecated flags. These seem to have prevented the v0.20.0 release from happening. Refs: - <https://github.com/svix/svix-cli/actions/runs/5756141108/job/15605015680#step:5:19> - <goreleaser/goreleaser#3625>
- Loading branch information
1 parent
f7afd0c
commit 663e0bb
Showing
2 changed files
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,17 @@ builds: | |
- goos: windows | ||
goarch: arm64 | ||
archives: | ||
- replacements: | ||
darwin: Darwin | ||
linux: Linux | ||
windows: Windows | ||
386: i386 | ||
amd64: x86_64 | ||
- format: tar.gz | ||
name_template: >- | ||
{{ .ProjectName }}_ | ||
{{- title .Os }}_ | ||
{{- if eq .Arch "amd64" }}x86_64 | ||
{{- else if eq .Arch "386" }}i386 | ||
{{- else }}{{ .Arch }}{{ end }} | ||
{{- if .Arm }}v{{ .Arm }}{{ end }} | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
checksum: | ||
name_template: 'checksums.txt' | ||
snapshot: | ||
|
@@ -40,7 +45,7 @@ nfpms: | |
- rpm | ||
- apk | ||
brews: | ||
- tap: | ||
- repository: | ||
owner: svix | ||
name: homebrew-svix | ||
commit_author: | ||
|
@@ -51,15 +56,16 @@ brews: | |
install: | | ||
bin.install "svix" | ||
caveats: "Thanks for installing the Svix CLI! If this is your first time using the CLI, checkout our docs at https://docs.svix.com." | ||
scoop: | ||
bucket: | ||
owner: svix | ||
name: scoop-svix | ||
commit_author: | ||
name: svix-ci | ||
email: [email protected] | ||
homepage: https://www.svix.com | ||
description: Svix CLI utility | ||
scoops: | ||
- | ||
repository: | ||
owner: svix | ||
name: scoop-svix | ||
commit_author: | ||
name: svix-ci | ||
email: [email protected] | ||
homepage: https://www.svix.com | ||
description: Svix CLI utility | ||
snapcrafts: | ||
- | ||
name: svix | ||
|