generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathaction.yml
35 lines (35 loc) · 1.23 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
31
32
33
34
35
name: 'Angular Deploy gh-pages Actions'
description: 'Github actions to automagically deploy your angular app to GitHub pages. '
author: 'Muhammad Ahsan Ayaz (https://github.com/ahsanayaz)'
branding:
icon: 'package'
color: 'red'
label: 'Angular Deploy gh-pages Actions'
inputs:
github_access_token:
description: "Github access token token used to deploy on gh_pages. You can find it on Github."
required: true
angular_project_dir:
description: "The directory of the angular project, in which all the commands will run"
default: "./"
build_configuration:
description: "Build configuration for the angular app"
default: "production"
base_href:
description: "base href for the app"
default: "/"
deploy_branch:
description: "branch on which the angular build will be deployed"
default: "gh-pages"
angular_dist_build_folder:
description: "The folder in which `ng build` provides its output. This is the folder which will be deployed to the `deploy_branch`."
default: "dist"
run_lint:
description: "If the action should run 'ng lint'"
default: false
skip_failure:
description: "Will not fail the step if anything fails"
default: false
runs:
using: 'node16'
main: 'dist/index.js'