Skip to content

Export MD token secret into env var so dbt can use it #6

Export MD token secret into env var so dbt can use it

Export MD token secret into env var so dbt can use it #6

Workflow file for this run

name: Load data into MotherDuck
on:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
environment:
name: Workflows
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
env:
MOTHERDUCK_TOKEN: ${{secrets.MOTHERDUCK_TOKEN}}
run: |
dbt deps
dbt build --target prod