Skip to content

Commit f2e5b79

Browse files
authored
Update deploy-dagster-cloud.yml (#204)
1 parent 674f6ea commit f2e5b79

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/workflows/deploy-dagster-cloud.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,8 @@ jobs:
354354
355355
- name: Get changed assets and launch materializations
356356
if: steps.branch-deployment.outputs.found == 'true'
357+
env:
358+
DAGSTER_CLOUD_DEPLOYMENT: data-eng-prod
357359
run: |
358360
COMMANDS=$(python scripts/get_changed_assets.py \
359361
--deployment "${{ steps.branch-deployment.outputs.name }}" \
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
select * from {{ ref("orders_cleaned") }}

dbt_project/models/CLEANED/orders_cleaned.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ select
55
purchase_price,
66
sku,
77
dt,
8+
dt as dt_2,
89
cast(dt as datetime) as order_date,
910
quantity * purchase_price as order_total
1011
from {{ source("raw_data", "orders") }}

hooli-data-eng/src/hooli_data_eng/defs/dbt/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ type: hooli_data_eng.defs.dbt.component.HooliDbtComponent
22

33
attributes:
44
groups:
5-
- selection: "company_stats locations_cleaned sku_stats company_perf"
5+
- selection: "company_stats locations_cleaned sku_stats company_perf orders_aggregated"
66
run_on_code_version_change: true
77

88
- selection: "weekly_order_summary order_stats"

0 commit comments

Comments
 (0)