forked from sveltejs/action-deploy-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
38 lines (35 loc) · 1.03 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
36
37
38
name: "Generate Docs"
description: "Generate docs from markdown"
inputs:
org:
description: "the target org of the docs"
required: true
repo:
description: "the target repo of the docs"
required: true
branch:
description: "the target branch of the docs"
required: true
cf_acc_id:
description: "the cloudflare account id"
required: true
cf_ns_id:
description: "the cloudflare KV namespace id"
required: true
cf_token:
description: "the cloudflare token to use for deploying the docs"
required: true
docs_path:
description: "the path to your root documentation (without a leading slash)"
required: false
default: "documentation"
pkg_path:
description: "the path to your packages in a monorepo (without a leading slash)"
required: false
default: "packages"
project_name:
description: "advanced option to override the project name (if not set, the project name will be the target repo name)"
required: false
runs:
using: "node16"
main: "dist/action.js"