-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
30 lines (30 loc) · 1.1 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
name: 'Deploy on Vercel'
description: 'Easily deploy your project on Vercel'
branding:
icon: box
color: gray-dark
inputs:
command:
description: 'Command starting the vercel deployment'
required: true
applyDomainAliases:
description: 'If true, will create Vercel aliases using the aliases specified in the vercel config file'
required: false
default: "true"
failIfAliasNotLinked:
description: 'If true, will throw an error (and crash CI) when there is an error about aliases link'
required: false
default: "false"
extraAliases:
description: 'List of additional aliases to create, will be added to the aliases specified in the vercel.json:aliases file'
required: false
outputs:
VERCEL_DEPLOYMENT_URL:
description: "Full Vercel deployment url (parsed from the deployment logs), e.g: https://xxx.vercel.app"
VERCEL_DEPLOYMENT_DOMAIN:
description: "Url without the protocol declaration, e.g: xxx.vercel.app"
VERCEL_ALIASES_ERROR:
description: "(optional) Vercel errors during domain aliasing"
runs:
using: 'node16'
main: 'github-action-runtime/index.js'