diff --git a/USERS.md b/USERS.md index ea5af9bd0b9..bba3120763c 100644 --- a/USERS.md +++ b/USERS.md @@ -80,6 +80,7 @@ Here's a running list of some organizations using GoReleaser[^1]: 1. [Zitatel](https://zitadel.com) 1. [pdfcpu](https://pdfcpu.io) 1. [prestd](https://prestd.com) +1. [Rixo](https://www.rixo.cz) Feel free to [add yours](https://github.com/goreleaser/goreleaser/edit/main/USERS.md)! diff --git a/www/docs/customization/blob.md b/www/docs/customization/blob.md index aade1e204e4..f22232e5f09 100644 --- a/www/docs/customization/blob.md +++ b/www/docs/customization/blob.md @@ -108,11 +108,18 @@ chain in the following order: ### Azure Blob Provider -It supports authentication only with -[environment variables](https://docs.microsoft.com/en-us/azure/storage/common/storage-azure-cli#set-default-azure-storage-account-environment-variables): +```yaml +blobs: + - provider: azblob + bucket: releases?storage_account=myazurestorage +``` + +Storage account is set over URL param `storage_account` in `bucket` or in environment variable `AZURE_STORAGE_ACCOUNT` -- `AZURE_STORAGE_ACCOUNT` -- `AZURE_STORAGE_KEY` or `AZURE_STORAGE_SAS_TOKEN` +It supports authentication with +- [environment variables](https://docs.microsoft.com/en-us/azure/storage/common/storage-azure-cli#set-default-azure-storage-account-environment-variables): + - `AZURE_STORAGE_KEY` or `AZURE_STORAGE_SAS_TOKEN` +- [default Azure credential](https://learn.microsoft.com/en-us/azure/developer/go/azure-sdk-authentication-service-principal) ### [GCS Provider](https://cloud.google.com/docs/authentication/production)