mirror of
https://github.com/FlipsideCrypto/livequery-models.git
synced 2026-02-06 10:56:46 +00:00
* - removed utils.register_secret - add hosted profile * - refactor project variables to use config object * - add \n * - uncommented code * - update return type * - reverted name truncation * - change GHA workflow environments to align with dbt profiles * - add hosted option to enviornment dropdown * - add integration test * Update dbt_project.yml Add INTERNAL_DEV role to stg profile * - fix grants - enforce dbt target
70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
name: docs_update
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
env:
|
|
DBT_PROFILES_DIR: ./
|
|
|
|
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 }}
|
|
|
|
jobs:
|
|
scheduled_run:
|
|
name: docs_update
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: prod
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
cache: "pip"
|
|
|
|
|
|
- name: install dependencies
|
|
run: |
|
|
pip install -r requirements.txt
|
|
dbt deps
|
|
- name: checkout docs branch
|
|
run: |
|
|
git checkout -b docs origin/main
|
|
|
|
- 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: clean up target directory
|
|
run: dbt clean
|
|
|
|
- name: check for changes
|
|
run: git status
|
|
|
|
- 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: push changes to docs
|
|
run: |
|
|
git push -f --set-upstream origin docs |