-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (34 loc) · 973 Bytes
/
action.yml
File metadata and controls
40 lines (34 loc) · 973 Bytes
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
name: "Angular Universal Vercel Deploy"
author: "Graycore"
description: "A Github Action that deploys an Angular Universal application to Vercel"
inputs:
prod:
description: "Whether or not to do a Vercel Prod Deploy"
required: false
default: 'false'
vercel_token:
description: "Your Vercel Token"
required: true
vercel_org:
description: "Your Vercel Org"
required: true
vercel_project_id:
description: "Your Vercel Project Id"
required: true
ng_version:
description: "Your Angular Version"
required: false
default: '19'
ng_ssr_engine:
description: "Which version of the Angular's SSR engine that you're using. One of 'CommonEngine' or 'AngularNodeAppEngine'"
required: false
default: 'CommonEngine'
outputs:
url:
description: 'The URL of the Vercel Deployment'
runs:
using: "docker"
image: "docker://graycore/angular-universal-vercel:latest"
branding:
icon: "code"
color: "green"