Skip to content

Commit

Permalink
removed quotes for the vars
Browse files Browse the repository at this point in the history
  • Loading branch information
luutuankiet committed Aug 28, 2024
1 parent 86d1c0b commit 6b083e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gh_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
pip install -r requirements.txt
pip install dbt-core==$DBT_VERSION dbt-postgres==$DBT_VERSION
dbt deps --project-dir "$DBT_PROJECT_DIR"
dbt deps --project-dir $DBT_PROJECT_DIR
# Cache npm packages
- name: Cache npm packages
Expand Down Expand Up @@ -122,4 +122,4 @@ jobs:
LIGHTDASH_PROJECT: ${{ secrets.LIGHTDASH_PROJECT }}
LIGHTDASH_URL: ${{ secrets.LIGHTDASH_URL }}
GOOGLE_APPLICATION_CREDENTIALS: '/tmp/googlecredentials.json'
run: lightdash deploy --project-dir "$DBT_PROJECT_DIR" --profiles-dir . --profile prod || lightdash deploy --project-dir "$DBT_PROJECT_DIR" --profiles-dir .
run: lightdash deploy --project-dir $DBT_PROJECT_DIR --profiles-dir . --profile prod || lightdash deploy --project-dir $DBT_PROJECT_DIR --profiles-dir $DBT_PROFILES_DIR
4 changes: 2 additions & 2 deletions .github/workflows/start-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
pip install -r requirements.txt
pip install dbt-core==$DBT_VERSION dbt-postgres==$DBT_VERSION dbt-redshift==$DBT_VERSION dbt-snowflake==$DBT_VERSION dbt-bigquery==$DBT_VERSION
dbt deps --project-dir "$DBT_PROJECT_DIR"
dbt deps --project-dir $DBT_PROJECT_DIR
- name: Cache npm packages
uses: actions/cache@v3
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
LIGHTDASH_PROJECT: ${{ secrets.LIGHTDASH_PROJECT }}
LIGHTDASH_URL: ${{ secrets.LIGHTDASH_URL }}
GOOGLE_APPLICATION_CREDENTIALS: '/tmp/googlecredentials.json'
run: lightdash start-preview --project-dir "$DBT_PROJECT_DIR" --profiles-dir "$DBT_PROFILES_DIR" --name ${GITHUB_REF##*/}
run: lightdash start-preview --project-dir $DBT_PROJECT_DIR --profiles-dir $DBT_PROFILES_DIR --name ${GITHUB_REF##*/}

- uses: jwalton/gh-find-current-pr@v1
id: finder
Expand Down

0 comments on commit 6b083e9

Please sign in to comment.