generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (35 loc) · 954 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: "Azure Blob Storage - Download Blob"
description: "Download a blob from azure blob storage"
author: "Arman Rahman"
branding:
icon: "download-cloud"
color: "blue"
inputs:
storage-account-name:
description: "Name of Azure Storage Account"
required: false
storage-account-key:
description: "Secret Key for the Azure Storage Account"
required: false
creds:
description: "Paste output of `az ad sp create-for-rbac` as value of secret variable: AZURE_CREDENTIALS"
required: false
connection-string:
description: "Connection string"
required: false
sas:
description: "shared access signatures (SAS) token for blob"
required: false
container-name:
description: "Container name"
required: true
blob-name:
description: "Blob name"
required: true
download-path:
description: "Destination path"
required: false
default: "."
runs:
using: "node12"
main: "dist/index.js"