Skip to content

Commit

Permalink
Use build-local as default output
Browse files Browse the repository at this point in the history
  • Loading branch information
avillar committed Oct 9, 2023
1 parent d642adc commit af731ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions ogc/bblocks/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
)

Expand All @@ -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',
)

Expand All @@ -52,7 +52,7 @@

parser.add_argument(
'--annotated-path',
default='build/annotated',
default='build-local/annotated',
help='Fail run if an error is encountered',
)

Expand All @@ -76,7 +76,7 @@

parser.add_argument(
'--test-outputs-path',
default='build/tests',
default='build-local/tests',
help='Directory for test output resources',
)

Expand Down
2 changes: 1 addition & 1 deletion postprocess/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit af731ce

Please sign in to comment.