Skip to content

Commit 620a229

Browse files
committed
add action metadata
1 parent 3befa6e commit 620a229

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# action-deploy-docs
2+
3+
hi

action.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Generate Docs"
2+
3+
description: "Generate docs from markdown"
4+
5+
inputs:
6+
type:
7+
description: "the release type"
8+
required: false
9+
repo:
10+
description: "the target repo of the docs"
11+
required: true
12+
branch:
13+
description: "the target branch of the docs"
14+
required: true
15+
cf_token:
16+
description: "the cloudflare token to use for deploying the docs"
17+
required: true
18+
19+
runs:
20+
using: "node12"
21+
main: "dist/main.js"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "action-deploy-docs",
33
"version": "1.0.0",
44
"description": "github action for the svelte org to deploy documentation to the svelte api",
5-
"main": "index.js",
5+
"main": "dist/main.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},

0 commit comments

Comments
 (0)