diff options
| author | Eliise <elseling@microsoft.com> | 2020-05-10 23:53:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-10 17:53:31 -0500 |
| commit | bee91ffa72f2ef5581a91b83940e9f5087f64dd8 (patch) | |
| tree | d364b0f854e456a18881a067676888e99457b4aa /.goreleaser.yml | |
| parent | 004d050d226335468ad93ce2e2370e444d6bf669 (diff) | |
Add ability to make manual releases with goreleaser (#303)
* Adding goreleaser
* Adding release to fork
* Add windows build
* Move to publish .zip for windows
* Change owner
Co-authored-by: Lawrence Gripper <info@grippers.co.uk>
* Add documentation
Co-authored-by: Lawrence Gripper <info@grippers.co.uk>
Co-authored-by: Nicholas M. Iodice <niiodice@microsoft.com>
Diffstat (limited to '.goreleaser.yml')
| -rw-r--r-- | .goreleaser.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 00000000..098e41a4 --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,26 @@ +# This is an example goreleaser.yaml file with some sane defaults. +builds: +- env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin +archives: +- format_overrides: + - goos: windows + format: zip +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "terraform-provider-azuredevops" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' +release: + github: + owner: microsoft + name: terraform-provider-azuredevops |
