diff options
Diffstat (limited to '.github/devcontainers-action/lib/main.js')
-rw-r--r-- | .github/devcontainers-action/lib/main.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/devcontainers-action/lib/main.js b/.github/devcontainers-action/lib/main.js index 69506b7..8c20111 100644 --- a/.github/devcontainers-action/lib/main.js +++ b/.github/devcontainers-action/lib/main.js @@ -59,6 +59,8 @@ function run() { }; const featuresBasePath = core.getInput('base-path-to-features'); const templatesBasePath = core.getInput('base-path-to-templates'); + const ociRegistry = core.getInput('oci-registry'); + const namespace = core.getInput('features-namespace'); let featuresMetadata = undefined; let templatesMetadata = undefined; // -- Package Release Artifacts @@ -73,7 +75,7 @@ function run() { // -- Generate Documentation if (shouldGenerateDocumentation && featuresBasePath) { core.info('Generating documentation for features...'); - yield (0, generateDocs_1.generateFeaturesDocumentation)(featuresBasePath); + yield (0, generateDocs_1.generateFeaturesDocumentation)(featuresBasePath, ociRegistry, namespace); } if (shouldGenerateDocumentation && templatesBasePath) { core.info('Generating documentation for templates...'); |