generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
32 lines (28 loc) · 833 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
name: 'Upload blob to Azure Storage'
description: 'Example action to upload blob to Azure Storage'
author: 'GitHub'
branding:
color: 'blue'
icon: 'upload-cloud'
inputs:
account:
description: |-
Storage account name, e.g. 'mystorageaccount'
required: true
destination:
description: |-
Name of container to upload blob to, e.g. '$web' to upload a static website.
required: true
source:
description: |-
Path to file(s) to upload to "destination", e.g. '.' to upload all files in the current directory.
Supports globbing, e.g. 'images/**.jpg'.
For more information, please refer to https://www.npmjs.com/package/glob.
required: true
outputs:
urls:
description: |-
URL(s) to the uploaded blob(s), if successful
runs:
using: 'node12'
main: 'dist/index.js'