chore: wire up all inputs to ENV variables

This commit is contained in:
Ken Snyder
2022-02-08 14:31:09 -08:00
parent 866092e2e0
commit 556e0e29bd

View File

@@ -15,7 +15,7 @@ on:
description: path to the base of the Markdown content
required: false
default: "docs"
tsAst:
tsAstPath:
description: path to TSDocs JSON in repo
required: false
default: "docs/api/js/js-api.json"
@@ -38,6 +38,10 @@ jobs:
STAGING_ADMIN_KEY: ${{secrets.STAGING_ADMIN_KEY}}
GH_TOKEN: ${{secrets.GH_TOKEN}}
GH_USER: ${{secrets.GH_USER}}
DOCS_PATH: ${{github.event.docsPath}}
TS_AST_PATH: ${{github.event.tsAstPath}}
REPO: ${{github.event.docsRep}
BRANCH: ${{github.event.docsBranch}
steps:
- uses: actions/checkout@v2