Skip to content

Commit

Permalink
Fix missing '-' in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenwindflower committed Mar 16, 2024
1 parent 128eee7 commit 8dbe066
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ on:

jobs:
build:
name: Load data into MotherDuck
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.11.x"
- name: Install Python dependencies
run: |
python3 -m pip install uv
uv pip install --system -r requirements.txt
- name: Run Transformations
run: |
dbt deps
dbt build --target prod
- name: Load data into MotherDuck
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.11.x"
- name: Install Python dependencies
run: |
python3 -m pip install uv
uv pip install --system -r requirements.txt
- name: Run Transformations
run: |
dbt deps
dbt build --target prod
1 change: 1 addition & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ jobs:
timestamp=$(date -u)
git commit -F message.txt || exit 0
git push
# TODO: add dbt build to MD on fresh data scrape

0 comments on commit 8dbe066

Please sign in to comment.