-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
38 lines (38 loc) · 1004 Bytes
/
action.yaml
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
name: 'deploy-worker'
description: 'Blazing Fast Build & Deployment of Cloudflare Workers & Workers for Platforms supporting HTTP Imports'
branding:
icon: 'box'
color: 'black'
inputs:
name:
description: 'The name of the worker'
required: false
domain:
description: 'The custom domain name for the worker'
required: false
main:
description: 'The main entry point'
required: false
default: './worker.js'
cloudflareAccountId:
description: 'Your Cloudflare Account ID'
required: false
default: ''
cloudflareApiToken:
description: 'Your Cloudflare API Token'
required: false
default: ''
config:
description: 'The name of the config file'
required: false
default: ''
outfile:
description: 'The build output file'
required: false
default: './dist/index.js'
outputs:
commentText:
description: 'The Comment Text with URL of the deployed worker instance'
runs:
using: 'node16'
main: './index.js'