Skip to content

Commit

Permalink
split archives in goreleaser and create second homebrew tap
Browse files Browse the repository at this point in the history
  • Loading branch information
dhenkel92 committed Oct 23, 2020
1 parent 945b7b3 commit bb8ee00
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,25 @@ builds:
- windows
- darwin
archives:
- replacements:
- name_template: "pod-helper_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
id: pod-helper
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64

builds:
- pod-helper
- name_template: "kubectl-dsh_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
id: kubectl-dsh
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
builds:
- kubectl-dsh
checksum:
name_template: 'checksums.txt'
Expand All @@ -45,10 +55,26 @@ brews:
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
folder: Formula
name: pod-helper
ids:
- pod-helper
- kubectl-dsh
homepage: https://github.com/dhenkel92/pod-helper
description: Kubernetes Pod Helper Util
test: |
system "#{bin}/pod-helper -h"
- tap:
owner: dhenkel92
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
folder: Formula
name: kubectl-dsh
ids:
- kubectl-dsh
homepage: https://github.com/dhenkel92/pod-helper
description: Kubernetes DSH Plugin
test: |
system "#{bin}/kubectl-dsh -h"
changelog:
sort: asc
filters:
Expand Down

0 comments on commit bb8ee00

Please sign in to comment.