Skip to content

Commit 8bb7597

Browse files
author
roller100 (BearingNode)
committed
Fix producer-dir path in dbt workflow validation step
The validation action constructs path as producer-dir/component/scenarios, but we were passing producer-dir='producer/dbt' with component='dbt', resulting in producer/dbt/dbt/scenarios (extra dbt). Changed producer-dir to 'producer' to match other workflow patterns. Signed-off-by: roller100 (BearingNode) <contact@bearingnode.com>
1 parent 56953fb commit 8bb7597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/producer_dbt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
uses: ./.github/actions/run_event_validation
113113
with:
114114
component: 'dbt'
115-
producer-dir: 'producer/dbt'
115+
producer-dir: 'producer'
116116
release_tags: ${{ inputs.get-latest-snapshots == 'true' && 'main' || inputs.ol_release }}
117117
ol_release: ${{ inputs.ol_release }}
118118
component_release: ${{ inputs.dbt_release }}

0 commit comments

Comments
 (0)