diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 1245d0f5..65b89b75 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -72,24 +72,10 @@ changelog: - "^docs:" - "^test:" -# https://goreleaser.com/customization/homebrew/ -brews: - - name: cli - url_template: "https://github.com/overmindtech/cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}" - commit_author: - name: Go Release Bot - email: bot@overmind.tech - homepage: "https://overmind.tech/" - description: "Use Overmind to calculate the risks for infrastructure changes" - license: "MIT" - skip_upload: auto - folder: Formula - repository: - owner: overmindtech - name: cli - token: "{{ .Env.GITHUB_TOKEN }}" - - +release: + extra_files: + - glob: dist/overmind-cli-amd64.zip + - glob: dist/overmind-cli-arm64.zip # The lines beneath this are called `modelines`. See `:help modeline` # Feel free to remove those if you don't want/use them. # yaml-language-server: $schema=https://goreleaser.com/static/schema.json diff --git a/gon-amd64.json b/gon-amd64.json index 618ab319..713d644d 100644 --- a/gon-amd64.json +++ b/gon-amd64.json @@ -11,5 +11,8 @@ "dmg" :{ "output_path": "dist/overmind-cli-amd64.dmg", "volume_name": "Overmind" + }, + "zip" :{ + "output_path": "dist/overmind-cli-amd64.zip" } } \ No newline at end of file diff --git a/gon-arm64.json b/gon-arm64.json index 012e707a..000e08c1 100644 --- a/gon-arm64.json +++ b/gon-arm64.json @@ -11,5 +11,8 @@ "dmg" :{ "output_path": "dist/overmind-cli-arm64.dmg", "volume_name": "Overmind" + }, + "zip" :{ + "output_path": "dist/overmind-cli-amd64.zip" } } \ No newline at end of file