mirror of
https://github.com/FlipsideCrypto/external-models.git
synced 2026-02-06 11:41:50 +00:00
68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
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
|
|
default: DBT
|
|
dbt_command:
|
|
type: string
|
|
description: 'DBT Run Command'
|
|
required: true
|
|
|
|
env:
|
|
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 }}"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
|
|
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@v1
|
|
with:
|
|
python-version: "3.7.x"
|
|
|
|
- name: install dependencies
|
|
run: |
|
|
pip3 install dbt-snowflake==${{ vars.DBT_VERSION }} cli_passthrough requests click
|
|
dbt deps
|
|
- name: Run DBT Jobs
|
|
run: |
|
|
${{ matrix.command }} |