Skip to content

Merge pull request #4 from trouze/feat/analyze-full-path #1

Merge pull request #4 from trouze/feat/analyze-full-path

Merge pull request #4 from trouze/feat/analyze-full-path #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags: ["v*"]
jobs:
build-and-publish:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/dbt-dag-opt/
permissions:
id-token: write # required for PyPI Trusted Publishing (OIDC)
contents: read
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.12
- name: Build sdist + wheel
run: uv build
- name: Verify built distributions
run: uv run --with twine twine check dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1