@@ -70,30 +70,31 @@ changelog:
7070 - title : ' Others'
7171 order : 999
7272
73- # Homebrew tap configuration
74- brews :
75- - name : tyk
76- tap :
77- owner : sedkis
78- name : homebrew-tyk
79- token : " {{ .Env.GITHUB_TOKEN }}"
80- # This will create/update the homebrew-tyk repository
81- commit_author :
82- name : goreleaserbot
83- email : bot@goreleaser.com
84- commit_msg_template : " Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
85- homepage : " https://github.com/sedkis/tyk-cli"
86- description : " Command-line interface for managing Tyk APIs and configurations"
87- license : " MIT"
88- # Dependencies
89- dependencies :
90- - name : curl
91- # Test command
92- test : |
93- system "#{bin}/tyk --version"
94- # Install instructions
95- install : |
96- bin.install "tyk"
73+ # Homebrew tap configuration - Temporarily disabled due to token permissions
74+ # TODO: Set up proper GitHub token with repo permissions to enable Homebrew tap
75+ # brews:
76+ # - name: tyk
77+ # tap:
78+ # owner: sedkis
79+ # name: homebrew-tyk
80+ # token: "{{ .Env.GITHUB_TOKEN }}"
81+ # # This will create/update the homebrew-tyk repository
82+ # commit_author:
83+ # name: goreleaserbot
84+ # email: bot@goreleaser.com
85+ # commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
86+ # homepage: "https://github.com/sedkis/tyk-cli"
87+ # description: "Command-line interface for managing Tyk APIs and configurations"
88+ # license: "MIT"
89+ # # Dependencies
90+ # dependencies:
91+ # - name: curl
92+ # # Test command
93+ # test: |
94+ # system "#{bin}/tyk --version"
95+ # # Install instructions
96+ # install: |
97+ # bin.install "tyk"
9798
9899# GitHub release configuration
99100release :
@@ -110,13 +111,12 @@ release:
110111
111112 ### Quick Install
112113 ```bash
113- # Homebrew (macOS/Linux)
114- brew tap sedkis/tyk
115- brew install tyk
116-
117114 # Direct download
118115 curl -L https://github.com/sedkis/tyk-cli/releases/download/{{.Tag}}/tyk-cli_{{.Tag}}_$(uname -s)_$(uname -m).tar.gz | tar xz
119116 sudo mv tyk /usr/local/bin/
117+
118+ # Verify installation
119+ tyk --version
120120 ```
121121 footer : |
122122 **Full Changelog**: https://github.com/sedkis/tyk-cli/compare/{{.PreviousTag}}...{{.Tag}}
0 commit comments