dbt_run_adhoc #291
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dbt_run_adhoc | |
run-name: dbt_run_adhoc | |
on: | |
workflow_dispatch: | |
branches: | |
- "main" | |
inputs: | |
environment: | |
type: choice | |
description: DBT Run Environment | |
required: true | |
options: | |
- dev | |
- prod | |
default: dev | |
warehouse: | |
type: choice | |
description: Snowflake warehouse | |
required: true | |
options: | |
- DBT | |
- DBT_CLOUD | |
- DBT_EMERGENCY | |
dbt_command: | |
type: string | |
description: 'DBT Run Command' | |
required: true | |
env: | |
DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}" | |
ACCOUNT: "${{ vars.ACCOUNT }}" | |
ROLE: "${{ vars.ROLE }}" | |
USER: "${{ vars.USER }}" | |
PASSWORD: "${{ secrets.PASSWORD }}" | |
REGION: "${{ vars.REGION }}" | |
DATABASE: "${{ vars.DATABASE }}" | |
WAREHOUSE: "${{ inputs.warehouse }}" | |
SCHEMA: "${{ vars.SCHEMA }}" | |
jobs: | |
run_dbt_jobs: | |
runs-on: ubuntu-latest | |
environment: | |
name: workflow_${{ inputs.environment }} | |
strategy: | |
matrix: | |
command: ${{fromJson(inputs.dbt_command)}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ vars.PYTHON_VERSION }}" | |
cache: "pip" | |
- name: install dependencies | |
run: | | |
pip install -r requirements.txt | |
dbt deps | |
- name: Run DBT Jobs | |
run: | | |
${{ matrix.command }} | |