Skip to content

Commit

Permalink
Update run_dbt.yml
Browse files Browse the repository at this point in the history
cd magic
  • Loading branch information
matsonj committed Aug 24, 2023
1 parent ca33883 commit 81ad450
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run_dbt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
PASSWORD: ${{ secrets.PROD_PASSWORD }}
PORT: ${{ secrets.PORT }}
SCHEMA: ${{ secrets.PROD_SCHEMA }}
DBT_PROFILES_DIR: project_goes_here

steps:
- uses: "actions/checkout@main"
Expand All @@ -36,7 +35,9 @@ jobs:
run: pip install -q -r requirements.txt

- name: dbt deps
run: dbt deps
run: |
cd project_goes_here
dbt deps
- name: dbt build
run: dbt build --target dev
Expand Down

0 comments on commit 81ad450

Please sign in to comment.