Skip to content

v3.0.4 Release

v3.0.4 Release #49

Workflow file for this run

name: PyPI deploy
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-python@v5.4.0
with:
python-version: '3.12'
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
version: 0.7.2
python-version: 3.12
- name: Install airflow-dbt-python with uv
run: uv sync --no-dev
- name: Build airflow-dbt-python with uv
run: uv build
- name: Publish airflow-dbt-python to PyPI with uv
run: uv publish --token ${{ secrets.PYPI_API_TOKEN }}