From c2faa5a260e52914fe4f9922294c5be75b89eef7 Mon Sep 17 00:00:00 2001 From: drethereum Date: Wed, 30 Oct 2024 10:47:16 -0600 Subject: [PATCH 1/2] test --- .github/workflows/dbt_docs_update.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dbt_docs_update.yml b/.github/workflows/dbt_docs_update.yml index f81f308..f886e5f 100644 --- a/.github/workflows/dbt_docs_update.yml +++ b/.github/workflows/dbt_docs_update.yml @@ -73,4 +73,6 @@ jobs: - name: push changes to docs run: | - git push -f --set-upstream origin docs \ No newline at end of file + git push -f --set-upstream origin docs + + \ No newline at end of file From a4e4509e9cd73704ad70fe9946358e94e4f8db54 Mon Sep 17 00:00:00 2001 From: drethereum Date: Wed, 30 Oct 2024 10:47:49 -0600 Subject: [PATCH 2/2] test --- .github/workflows/dbt_docs_update.yml | 114 +++++++++++++------------- 1 file changed, 56 insertions(+), 58 deletions(-) diff --git a/.github/workflows/dbt_docs_update.yml b/.github/workflows/dbt_docs_update.yml index f886e5f..dd80eb9 100644 --- a/.github/workflows/dbt_docs_update.yml +++ b/.github/workflows/dbt_docs_update.yml @@ -1,78 +1,76 @@ -name: docs_update +# name: docs_update # on: # push: # branches: # - "main" -env: - USE_VARS: "${{ vars.USE_VARS }}" - DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}" - DBT_VERSION: "${{ vars.DBT_VERSION }}" - ACCOUNT: "${{ vars.ACCOUNT }}" - ROLE: "${{ vars.ROLE }}" - USER: "${{ vars.USER }}" - PASSWORD: "${{ secrets.PASSWORD }}" - REGION: "${{ vars.REGION }}" - DATABASE: "${{ vars.DATABASE }}" - WAREHOUSE: "${{ vars.WAREHOUSE }}" - SCHEMA: "${{ vars.SCHEMA }}" +# env: +# USE_VARS: "${{ vars.USE_VARS }}" +# DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}" +# DBT_VERSION: "${{ vars.DBT_VERSION }}" +# ACCOUNT: "${{ vars.ACCOUNT }}" +# ROLE: "${{ vars.ROLE }}" +# USER: "${{ vars.USER }}" +# PASSWORD: "${{ secrets.PASSWORD }}" +# REGION: "${{ vars.REGION }}" +# DATABASE: "${{ vars.DATABASE }}" +# WAREHOUSE: "${{ vars.WAREHOUSE }}" +# SCHEMA: "${{ vars.SCHEMA }}" -concurrency: - group: ${{ github.workflow }} +# concurrency: +# group: ${{ github.workflow }} -jobs: - run_dbt_jobs: - runs-on: ubuntu-latest - environment: - name: workflow_prod +# jobs: +# run_dbt_jobs: +# runs-on: ubuntu-latest +# environment: +# name: workflow_prod - steps: - - uses: actions/checkout@v3 +# steps: +# - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: "3.10" - cache: "pip" +# - uses: actions/setup-python@v4 +# with: +# python-version: "3.10" +# cache: "pip" - - name: install dependencies - run: | - pip install -r requirements.txt - dbt deps +# - name: install dependencies +# run: | +# pip install -r requirements.txt +# dbt deps - - name: refresh ddl for datashare - run: | - cnt=$(dbt ls -m fsc_utils.datashare._datashare___create_gold | wc -l ); if [ $cnt -eq 1 ]; then dbt run -m fsc_utils.datashare._datashare___create_gold; fi; +# - name: refresh ddl for datashare +# run: | +# cnt=$(dbt ls -m fsc_utils.datashare._datashare___create_gold | wc -l ); if [ $cnt -eq 1 ]; then dbt run -m fsc_utils.datashare._datashare___create_gold; fi; - - name: checkout docs branch - run: | - git checkout -B docs origin/main +# - name: checkout docs branch +# run: | +# git checkout -B docs origin/main - - name: generate dbt docs - run: dbt docs generate -t prod +# - name: generate dbt docs +# run: dbt docs generate -t prod - - name: move files to docs directory - run: | - mkdir -p ./docs - cp target/{catalog.json,manifest.json,index.html} docs/ +# - name: move files to docs directory +# run: | +# mkdir -p ./docs +# cp target/{catalog.json,manifest.json,index.html} docs/ - - name: clean up target directory - run: dbt clean +# - name: clean up target directory +# run: dbt clean - - name: check for changes - run: git status +# - name: check for changes +# run: git status - - name: stage changed files - run: git add . +# - name: stage changed files +# run: git add . - - name: commit changed files - run: | - git config user.email "abc@xyz" - git config user.name "github-actions" - git commit -am "Auto-update docs" +# - name: commit changed files +# run: | +# git config user.email "abc@xyz" +# git config user.name "github-actions" +# git commit -am "Auto-update docs" - - name: push changes to docs - run: | - git push -f --set-upstream origin docs - - \ No newline at end of file +# - name: push changes to docs +# run: | +# git push -f --set-upstream origin docs \ No newline at end of file