github_website_sync: fix dbt
Signed-off-by: Alexis Pentori <alexis@status.im>
This commit is contained in:
parent
8722b38d82
commit
9cc14e7b4c
2
dbt.py
2
dbt.py
|
@ -34,7 +34,7 @@ def dbt_models():
|
|||
)
|
||||
BashOperator(
|
||||
task_id='dbt_postgres_run',
|
||||
bash_command='dbt run --profiles-dir /dbt --project-dir /dbt/dbt-models'
|
||||
bash_command='dbt run --profiles-dir /dbt --project-dir /dbt/dbt-models --select github'
|
||||
)
|
||||
|
||||
dbt_models()
|
||||
|
|
|
@ -53,7 +53,7 @@ def github_website_sync():
|
|||
# Launch DBT transformation on the data previously fetched
|
||||
BashOperator(
|
||||
task_id='dbt_postgres_run',
|
||||
bash_command='dbt run --profiles-dir /dbt --project-dir /dbt/dbt-models/'
|
||||
bash_command='dbt run --profiles-dir /dbt --project-dir /dbt/dbt-models/ --select github'
|
||||
)
|
||||
# Trigger Airbyte Sync from main database to Hasura
|
||||
AirbyteTriggerSyncOperator(
|
||||
|
|
Loading…
Reference in New Issue