Skip to content

Commit

Permalink
Update run_dbt.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matsonj committed Aug 23, 2023
1 parent c108a3b commit 046f43a
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/run_dbt.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Manual DBT Run
name: Manual DBT Run - dev

on:
workflow_dispatch:
Expand All @@ -13,7 +13,7 @@ on:
- warning
- debug
tags:
description: 'Manually trigger a production dbt run'
description: 'Manually trigger a dev dbt run'
required: false
type: boolean

Expand All @@ -29,10 +29,14 @@ jobs:
SCHEMA: ${{ secrets.PROD_SCHEMA }}

steps:
- uses: "actions/checkout@v3"
# - uses: "actions/setup-python@v2"
# with:
# python-version: "3.9"
# - name: add prod target to profiles.yml
# run: "python update_profile_with_prod.py"
- uses: "actions/checkout@main"

- name: install requirements
run: pip install -q -r requirements.txt

- name: dbt deps
run: dbt deps

- name: dbt build
run: dbt build --target dev

0 comments on commit 046f43a

Please sign in to comment.