dbt_run_abi_refresh #1105
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_abi_refresh | |
run-name: dbt_run_abi_refresh | |
on: | |
workflow_dispatch: | |
schedule: | |
# Runs “At minute 0 past every 12th hour.” (see https://crontab.guru) | |
- cron: '0 */12 * * *' | |
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: | |
run_dbt_jobs: | |
runs-on: ubuntu-latest | |
environment: | |
name: workflow_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: Update ABI models | |
run: | | |
dbt run -m "gnosis_models,tag:abis" | |
- name: Kick off decoded logs history, if there are new ABIs from users | |
run: | | |
dbt run-operation run_decoded_logs_history |