fix: .goreleaser.yml

drew created

Change summary

.goreleaser.yml | 21 +--------------------
1 file changed, 1 insertion(+), 20 deletions(-)

Detailed changes

.goreleaser.yml 🔗

@@ -71,37 +71,18 @@ release:
 
 # 'brews' configures the Homebrew tap integration.
 brews:
-  - # The configuration for your Homebrew tap.
-    # The name of your formula file will be 'email-cli.rb'.
-    name: email-cli
-    # The GitHub repository for your Homebrew tap.
+  - name: email-cli
     tap:
       owner: andrinoff
       name: homebrew-email-cli
-      # The token to use for pushing to the tap repository.
-      # It uses the secret you'll create in your repository settings.
       token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
-
-    # The commit author for the tap update.
     commit_author:
       name: goreleaserbot
       email: bot@goreleaser.com
-
-    # A description for your formula.
     description: "A beautiful and functional email client for your terminal."
-    # The homepage URL for your formula.
     homepage: "https://github.com/andrinoff/email-cli"
-
-    # The dependencies for your formula.
-    # Since it's a pre-compiled binary, there are no runtime dependencies.
     dependencies: []
-
-    # The test block for your formula.
-    # This command will be run by `brew test email-cli`.
     test: |
       system "#{bin}/email-cli --version"
-
-    # The installation instructions for your formula.
-    # This tells Homebrew to just install the binary.
     install: |
       bin.install "email-cli"