Skip to content

Commit

Permalink
adding dbt profile
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltanctoth committed Jan 10, 2024
1 parent 90acadb commit dae1f87
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Create dbt profile
with:
PROFILES_YML: ${{ secrets.PROFILES_YML }}
run: |
mkdir -p ~/.dbt
echo $DBT_CREDENTIALS > ~/.dbt/profiles.yml
- name: Execute dbt debug
run: |
dbt debug
Expand Down

0 comments on commit dae1f87

Please sign in to comment.