Commit 223fb05
authored
Include tarballs in releases (#2515)
## Changes
Builds on #2513 to support multiple archive formats.
## Why
See #2351 and #1296.
Instead of producing tarballs only for a subset of operating systems, I
figured we should produce them for every operating system/architecture
combination to avoid unnecessary conditionals when writing
platform-independent installers (for example, the `setup-cli` installer
scripts).
## Tests
I manually confirmed that GoReleaser now produces both ZIP files and
tarballs:
```
% ls -1 dist/*.{zip,tar.gz}
dist/databricks_cli_darwin_amd64.tar.gz
dist/databricks_cli_darwin_amd64.zip
dist/databricks_cli_darwin_arm64.tar.gz
dist/databricks_cli_darwin_arm64.zip
dist/databricks_cli_linux_amd64.tar.gz
dist/databricks_cli_linux_amd64.zip
dist/databricks_cli_linux_arm64.tar.gz
dist/databricks_cli_linux_arm64.zip
dist/databricks_cli_windows_amd64.tar.gz
dist/databricks_cli_windows_amd64.zip
dist/databricks_cli_windows_arm64.tar.gz
dist/databricks_cli_windows_arm64.zip
```1 parent 976391c commit 223fb05
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
0 commit comments