Skip to content

Commit

Permalink
Add missing workflow inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
avillar committed Jan 12, 2024
1 parent d23bcd6 commit 09d4571
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/validate-and-process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
config_file: ${{ inputs.config_file }}
test_outputs_path: ${{ inputs.test_outputs_path }}
github_base_url: ${{ inputs.github_base_url }}
deploy_viewer: "${{ inputs.deploy-viewer }}"
deploy_viewer: ${{ inputs.deploy-viewer && 'true' || 'false' }}
viewer_path: ${{ inputs.viewer-path }}
- name: Compress large _visited_properties.tsv and git pull
run: |
Expand Down
6 changes: 6 additions & 0 deletions full/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ inputs:
github_base_url:
description: Base URL for linking to GitHub content
default: https://github.com/${{github.repository}}/blob/${{github.ref_name}}/
deploy_viewer:
description: Whether to use the new building blocks viewer
default: 'true'
viewer_path:
description: Path where to deploy the viewer
default: '.'

runs:
using: composite
Expand Down

0 comments on commit 09d4571

Please sign in to comment.