forked from J12934/helm-gh-pages-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
26 lines (26 loc) · 846 Bytes
/
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
name: "Helm Publish"
description: "Build and deploy your Helm charts to GitHub Pages."
branding:
icon: "archive"
color: "blue"
inputs:
access-token:
description: "A personal access token needed to push your site after it has been built."
required: true
deploy-branch:
description: "The branch expected by GitHub to have the static files needed for your site."
required: false
default: "master"
remote-deploy-branch:
description: "The branch expected by GitHub to have the static files needed for your site."
required: false
default: "master"
charts-folder:
description: "The folder in which the helm charts are located"
required: false
default: "charts"
repo:
description: "GitHub repository where assets will be deployed (default current)"
runs:
using: "node12"
main: "index.js"