Skip to content

Commit

Permalink
troubleshooting ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thutuva committed Aug 19, 2024
1 parent 07e9a3a commit 974fc07
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dbt_v1.7.3_redshift_build_full_refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ jobs:
- name: dbt-deps
uses: mwhitaker/dbt-action@v1.7.3
with:
dbt_command: "dbt deps --profiles-dir .integration_tests/profiles/redshift"
dbt_command: "dbt deps --profiles-dir ./profiles/redshift"
dbt_project_folder: "integration_tests"

- name: dbt-debug
uses: mwhitaker/dbt-action@v1.7.3
with:
dbt_command: "dbt debug --profiles-dir .integration_tests/profiles/redshift"
dbt_command: "dbt debug --profiles-dir ./profiles/redshift"
dbt_project_folder: "integration_tests"

- name: dbt-build
uses: mwhitaker/dbt-action@v1.7.3
with:
dbt_command: 'dbt build --full-refresh --profiles-dir .integration_tests/profiles/redshift --vars {"input_database":"bcda_synthetic ","input_schema":"input_layer"}'
dbt_command: 'dbt build --full-refresh --profiles-dir ./profiles/redshift --vars {"input_database":"bcda_synthetic ","input_schema":"input_layer"}'
dbt_project_folder: "integration_tests"

- name: Get the result
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dbt_v1.7.3_snowflake_build_full_refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ jobs:
- name: dbt-deps
uses: mwhitaker/dbt-action@v1.6.3
with:
dbt_command: "dbt deps --profiles-dir .integration_tests/profiles/snowflake"
dbt_command: "dbt deps --profiles-dir ./profiles/snowflake"
dbt_project_folder: "integration_tests"

- name: dbt-debug
uses: mwhitaker/dbt-action@v1.6.3
with:
dbt_command: "dbt debug --profiles-dir .integration_tests/profiles/snowflake"
dbt_command: "dbt debug --profiles-dir ./profiles/snowflake"
dbt_project_folder: "integration_tests"

- name: dbt-build
uses: mwhitaker/dbt-action@v1.6.3
with:
dbt_command: 'dbt build --full-refresh --profiles-dir .integration_tests/profiles/snowflake --vars {"input_database":"bcda_synthetic","input_schema":"input_layer"}'
dbt_command: 'dbt build --full-refresh --profiles-dir ./profiles/snowflake --vars {"input_database":"bcda_synthetic","input_schema":"input_layer"}'
dbt_project_folder: "integration_tests"

- name: Get the result
Expand Down

0 comments on commit 974fc07

Please sign in to comment.