forked from lauchacarro/Azure-Storage-Action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
21 lines (21 loc) · 710 Bytes
/
action.yml
File metadata and controls
21 lines (21 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: 'Azure Storage Action'
description: 'You can automate your workflow to deploy files to Azure Blob Storage Container without Azure Credentials'
inputs:
connection-string:
description: 'Connection String of the Azure Storage Container'
required: true
folder:
description: 'Folder what contains the files for upload to Storage Container'
required: false
blob-container-name:
description: 'Name of Blob Container Storage'
required: false
public-access-policy:
description: 'Access Policy to update in the Container'
required: false
enabled-static-website:
description: 'Enabled static website'
required: false
runs:
using: 'node12'
main: 'index.js'