generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
33 lines (33 loc) · 826 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
name: 'sync-to-qiniu-action'
description: 'synchronize the files in the specified path to qiniu'
inputs:
accessKey:
description: 'qiniu accessKey'
required: true
secretKey:
description: 'qiniu secretKey'
required: true
bucket:
description: 'qiniu bucket'
required: true
zone:
description: 'bucket zone'
required: true
path:
description: 'the path under files you want to upload'
required: true
token:
default: 'a token with access to your repository scoped in as a secret'
required: true
fsizeLimit:
description: 'maximum upload file size limit(byte)'
default: 5 * 1024 * 1024 #默认 5M
mimeLimit:
description: 'File MimeType'
runs:
using: 'node12'
main: 'dist/index.js'
post: 'dist/index.js'
branding:
icon: 'upload-cloud'
color: 'blue'