Skip to content

Commit 135cb27

Browse files
try with env vars
1 parent 841e6c4 commit 135cb27

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/generate_docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
uses: mxschmitt/action-tmate@v3
2525

2626
- name: Set up dbt profile
27+
env:
28+
DBT_HOST: ${{ secrets.DBT_HOST }}
2729
run: |
2830
mkdir -p ~/.dbt
2931
echo "
@@ -32,7 +34,7 @@ jobs:
3234
outputs:
3335
dev:
3436
type: redshift
35-
host: \"${{ secrets.DBT_HOST }}\"
37+
host: \"$DBT_HOST\"
3638
user: \"${{ secrets.DBT_USER }}\"
3739
password: \"${{ secrets.DBT_PASSWORD }}\"
3840
port: 5439

0 commit comments

Comments
 (0)