Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goreleaser/goreleaser-azure-devops-extension
Azure DevOps Extension for GoReleaser
https://github.com/goreleaser/goreleaser-azure-devops-extension
azure-devops continuous-integration golang goreleaser hacktoberfest
Last synced: about 7 hours ago
JSON representation
Azure DevOps Extension for GoReleaser
- Host: GitHub
- URL: https://github.com/goreleaser/goreleaser-azure-devops-extension
- Owner: goreleaser
- License: mit
- Created: 2021-10-29T21:35:46.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T08:40:16.000Z (18 days ago)
- Last Synced: 2024-10-30T00:00:34.250Z (17 days ago)
- Topics: azure-devops, continuous-integration, golang, goreleaser, hacktoberfest
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=GoReleaser.goreleaser
- Size: 1.94 MB
- Stars: 4
- Watchers: 4
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
![ado_goreleaser](images/title.png)
# GoReleaser: Azure DevOps Extension
[![Release](https://img.shields.io/github/release/goreleaser/goreleaser-azure-devops-extension.svg?style=for-the-badge)](https://github.com/goreleaser/goreleaser-azure-devops-extension/releases/latest)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=for-the-badge)](LICENSE)
[![Build status](https://img.shields.io/github/actions/workflow/status/goreleaser/goreleaser-azure-devops-extension/ci.yaml?style=for-the-badge&branch=main)](https://github.com/goreleaser/goreleaser-azure-devops-extension/actions?workflow=build)![Azure DevOps](https://img.shields.io/badge/azure_devops-0078D7?style=for-the-badge&logo=azuredevops&logoColor=white)
[![Join Discord](https://img.shields.io/badge/Join_our_Discord_server-5865F2?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/RGEBtg8vQ6)
[![x.com](https://img.shields.io/badge/-@goreleaser-000000?style=for-the-badge&logo=X&logoColor=ffffff)](https://x.com/goreleaser)[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/dirien/minectl/badge?style=for-the-badge)](https://api.securityscorecards.dev/projects/github.com/goreleaser/goreleaser-azure-devops-extension)
## Overview
This task allows you to easily run GoReleaser within your Azure Pipeline jobs.
## Howto
See the blog article [Use GoReleaser With Azure DevOps](https://blog.goreleaser.com/use-goreleaser-with-azure-devops-c2212d3996ca)
for a detailed explanation of how to use this extension in your Azure Pipeline jobs.## QuickStart
![quickstart_1](images/ado.png)
## Customizing
Add the plugin via Azure Pipeline Editor
![quickstart_2](images/ado_2.png)
or directly into your `azure-pipeline.yaml`
![quickstart_3](images/ado_3.png)
````yaml
- task: goreleaser@0
inputs:
version: 'latest'
distribution: 'goreleaser'
args: ''
workdir: '$(Build.SourcesDirectory)'
````### Inputs
Following inputs can be used
| Name | Type | Default | Description |
|----------------|--------|-----------------------------|------------------------------------------------------------------|
| `distribution` | String | `goreleaser` | GoReleaser distribution, either `goreleaser` or `goreleaser-pro` |
| `version`**¹** | String | `latest` | GoReleaser version |
| `args` | String | | Arguments to pass to GoReleaser |
| `workdir` | String | `$(Build.SourcesDirectory)` | Working directory (below repository root) |
| `installOnly` | Bool | `false` | Just install GoReleaser |> **¹** Can be a fixed version like `v0.132.0` or a max satisfying semver one like `~> 0.132`. In this case this will return `v0.132.1`.
> For the `pro` version, add `-pro` to the string### Environment variables
Following environment variables can be used, as environment variable.
| Name | Description |
|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
| `GITHUB_TOKEN` | [GITHUB_TOKEN](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token) for e.g. `brew` or `gofish` |
| `GORELEASER_KEY` | Your [GoReleaser Pro](https://goreleaser.com/pro) License Key, in case you are using the `goreleaser-pro` distribution |## Limitation
I think, you should either disable the [release step](https://goreleaser.com/customization/release/). Or create a "
dummy" repo in GitHub, so you can still use your own `homebrew tap` or `gofish` repo.GoReleaser is not supporting Azure Artifacts currently.
You need to use `Publish Pipeline Artifacts` to publish the artifact inside Azure DevOps.
## Tutorials
- [Use GoReleaser With Azure DevOps](https://blog.goreleaser.com/use-goreleaser-with-azure-devops-c2212d3996ca)
- [Releasing multi-platform container images with GoReleaser in Azure DevOps
](https://blog.goreleaser.com/releasing-multi-platform-container-images-with-goreleaser-in-azure-devops-d8916df4250a)## Documentation
Please refer to [https://goreleaser.com/intro/](https://goreleaser.com/intro/) for more documentation on using
GoReleaser.# Links
- Follow the progress on the [GitHub repository](https://github.com/goreleaser/goreleaser)
- Follow [@goreleaser](https://twitter.com/goreleaser) on Twitter for updates
- Join our [Discord server](https://discord.gg/RGEBtg8vQ6)
- Ask questions on [StackOverflow](https://stackoverflow.com/questions/tagged/goreleaser)
- For questions, support and general discussion, please use
[GitHub Discussions](https://github.com/goreleaser/goreleaser/discussions);
- [Contributing Guidelines](https://github.com/goreleaser/goreleaser/blob/master/CONTRIBUTING.md)# License
MIT
see [LICENSE](https://github.com/goreleaser/goreleaser-azure-devops-extension/blob/master/LICENSE) for details.