diff --git a/.github/workflows/dbt_docs_update.yml b/.github/workflows/dbt_docs_update.yml index 96f2268..74433ea 100644 --- a/.github/workflows/dbt_docs_update.yml +++ b/.github/workflows/dbt_docs_update.yml @@ -6,8 +6,8 @@ on: - "main" env: - DBT_PROFILES_DIR: ./.github/workflows/.dbt/ - + DBT_PROFILES_DIR: "${{ secrets.DBT_PROFILES_DIR }}" + DBT_VERSION: "${{ secrets.DBT_VERSION }}" ACCOUNT: "${{ secrets.ACCOUNT }}" ROLE: "${{ secrets.ROLE }}" USER: "${{ secrets.USER }}" diff --git a/.github/workflows/dbt_run_daily_dev_refresh.yml b/.github/workflows/dbt_run_daily_dev_refresh.yml index 2732b09..81bfd1e 100644 --- a/.github/workflows/dbt_run_daily_dev_refresh.yml +++ b/.github/workflows/dbt_run_daily_dev_refresh.yml @@ -8,8 +8,8 @@ on: - cron: '0 8 * * *' env: - DBT_PROFILES_DIR: ./.github/workflows/.dbt/ - + DBT_PROFILES_DIR: "${{ secrets.DBT_PROFILES_DIR }}" + DBT_VERSION: "${{ secrets.DBT_VERSION }}" ACCOUNT: "${{ secrets.ACCOUNT }}" ROLE: "${{ secrets.ROLE }}" USER: "${{ secrets.USER }}" diff --git a/.github/workflows/dbt_run_hourly.yml b/.github/workflows/dbt_run_hourly.yml index 0a1de06..897b707 100644 --- a/.github/workflows/dbt_run_hourly.yml +++ b/.github/workflows/dbt_run_hourly.yml @@ -8,8 +8,8 @@ on: - cron: '0 */1 * * *' env: - DBT_PROFILES_DIR: ./.github/workflows/.dbt/ - + DBT_PROFILES_DIR: "${{ secrets.DBT_PROFILES_DIR }}" + DBT_VERSION: "${{ secrets.DBT_VERSION }}" ACCOUNT: "${{ secrets.ACCOUNT }}" ROLE: "${{ secrets.ROLE }}" USER: "${{ secrets.USER }}" diff --git a/.github/workflows/dbt_run_nearblocks_api.yml b/.github/workflows/dbt_run_nearblocks_api.yml index d9d9319..69e2406 100644 --- a/.github/workflows/dbt_run_nearblocks_api.yml +++ b/.github/workflows/dbt_run_nearblocks_api.yml @@ -8,8 +8,8 @@ on: - cron: '0 1 * * *' env: - DBT_PROFILES_DIR: ./.github/workflows/.dbt/ - + DBT_PROFILES_DIR: "${{ secrets.DBT_PROFILES_DIR }}" + DBT_VERSION: "${{ secrets.DBT_VERSION }}" ACCOUNT: "${{ secrets.ACCOUNT }}" ROLE: "${{ secrets.ROLE }}" USER: "${{ secrets.USER }}" diff --git a/.github/workflows/dbt_run_s3_sync.yml b/.github/workflows/dbt_run_s3_sync.yml index e4753d9..d845ddf 100644 --- a/.github/workflows/dbt_run_s3_sync.yml +++ b/.github/workflows/dbt_run_s3_sync.yml @@ -8,8 +8,8 @@ on: - cron: '0 */1 * * *' env: - DBT_PROFILES_DIR: ./.github/workflows/.dbt/ - + DBT_PROFILES_DIR: "${{ secrets.DBT_PROFILES_DIR }}" + DBT_VERSION: "${{ secrets.DBT_VERSION }}" ACCOUNT: "${{ secrets.ACCOUNT }}" ROLE: "${{ secrets.ROLE }}" USER: "${{ secrets.USER }}" diff --git a/.github/workflows/dbt_test.yml b/.github/workflows/dbt_test.yml index 124aedb..3172cc5 100644 --- a/.github/workflows/dbt_test.yml +++ b/.github/workflows/dbt_test.yml @@ -7,8 +7,8 @@ on: # Run at 1600 UTC daily (see https://crontab.guru) - cron: '0 16 * * *' env: - DBT_PROFILES_DIR: ./.github/workflows/.dbt/ - + DBT_PROFILES_DIR: "${{ secrets.DBT_PROFILES_DIR }}" + DBT_VERSION: "${{ secrets.DBT_VERSION }}" ACCOUNT: "${{ secrets.ACCOUNT }}" ROLE: "${{ secrets.ROLE }}" USER: "${{ secrets.USER }}"