Azure blob storage provider copies all or selected artifacts to Windows Azure storage.
storage_account_name
) - Azure storage account name.storage_access_key
) - storage account access key.container
) - the name of storage container to copy to. Container name length must be between 3 and 63 symbols.folder
) - name of folder to copy to.artifact
) - name of artifact to copy.unzip
) - set true
to unpack Zip
artifacts before uploading to storage. Default is false
.set_content_type
) - set true
to automatically configure content types based on file extensions, which default to application/octet-stream
otherwise. Default is false
.Configuring in appveyor.yml
:
deploy:
provider: AzureBlob
storage_account_name: mystorage
storage_access_key:
secure: ZZbm8KKD1lLCi9btF1fDkQ==
container: builds
folder: $(APPVEYOR_PROJECT_SLUG)\$(APPVEYOR_BUILD_VERSION)
artifact: myapp
unzip: false
set_content_type: false