-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
48 lines (43 loc) · 1.5 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
name: 'Azure Static Website'
description: 'Deploy files to Azure Blob Storage Container using a connection string'
inputs:
storage-account-name:
description: 'The name of the Azure Storage Account. Make sure to call az login before this step, or provide a value for storage-account-key'
required: false
storage-account-key:
description: 'One of the two shared keys of the storage account'
required: false
connection-string:
description: 'Connection String of the Azure Storage Container'
required: false
blob-container-name:
description: 'Name of the Blob Container Storage'
required: false
public-access-policy:
description: 'Access Policy to update in the Container (container | blob | <none>). For private containers do not specity any value.'
required: false
enabled-static-website:
description: 'Enabled static website'
required: false
index-file:
description: 'Index file for the static website'
required: false
error-file:
description: '404 Error file for the static website'
required: false
remove-existing-files:
description: 'If the existing files should be removed before uploading the new files'
required: false
cache-control:
description: 'Sets each blobs cache control.'
required: false
folder:
description: 'Folder containing the files to be uploaded to the Storage Container'
required: false
default: '.'
branding:
icon: 'upload-cloud'
color: blue
runs:
using: 'node16'
main: 'dist/index.js'