forked from amondnet/now-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
39 lines (36 loc) · 1.09 KB
/
action.yml
File metadata and controls
39 lines (36 loc) · 1.09 KB
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
name: "ZEIT Now Deployment"
description: "This action make a deployment with github actions instead of ZEIT Now builder."
inputs:
zeit-token:
description: "zeit.co token"
required: true
zeit-team-id:
description: " This is required if your deployment is made on team project."
required: false
now-args:
description: ""
required: false
default: ""
# now-local-config:
# description: "Path to your Now configuration file. Path is relative to your project root folder or relative to the value set to `now-folder-path` if set."
# required: false
# default: ""
now-folder-path:
description: "Path to folder where you want to execute the now command. Path is relative to your project root folder."
required: false
default: ""
github-token:
required: true
github-deployment:
required: false
default: "false"
description: "if you want to create github deployment, set true, default: false"
outputs:
preview-url:
description: "deployment preview URL"
runs:
using: "node12"
main: "index.js"
branding:
icon: "check"
color: "black"