diff --git a/ogc/bblocks/entrypoint.py b/ogc/bblocks/entrypoint.py index a061c63..57d8f5d 100644 --- a/ogc/bblocks/entrypoint.py +++ b/ogc/bblocks/entrypoint.py @@ -22,7 +22,7 @@ parser.add_argument( '--register-file', - default='build/register.json', + default='build-local/register.json', help='Output JSON Building Blocks register document', ) @@ -34,13 +34,13 @@ parser.add_argument( '--generated-docs-path', - default='build/generateddocs', + default='build-local/generateddocs', help='Output directory for generated documentation', ) parser.add_argument( '--base-url', - default='', + default='http://www.example.com/my-building-blocks/', help='Base URL for hyperlink generation', ) @@ -52,7 +52,7 @@ parser.add_argument( '--annotated-path', - default='build/annotated', + default='build-local/annotated', help='Fail run if an error is encountered', ) @@ -76,7 +76,7 @@ parser.add_argument( '--test-outputs-path', - default='build/tests', + default='build-local/tests', help='Directory for test output resources', ) diff --git a/postprocess/action.yml b/postprocess/action.yml index 08c6ca0..01af5a2 100644 --- a/postprocess/action.yml +++ b/postprocess/action.yml @@ -44,7 +44,7 @@ runs: - ${{ inputs.register_file }} - '--items-dir' - ${{ inputs.items_dir }} - - '--generated-docs' + - '--generated-docs-path' - ${{ inputs.generated_docs_path }} - '--base-url' - ${{ inputs.base_url }}