Skip to content

chore: 0.12.2 release preparation (#353) #37

chore: 0.12.2 release preparation (#353)

chore: 0.12.2 release preparation (#353) #37

Workflow file for this run

name: PyPi Publish
on:
push:
tags:
- v*
jobs:
pypi_publish:
if: github.repository == 'numaproj/numaflow-python'
runs-on: ubuntu-latest
environment: production
defaults:
run:
working-directory: packages/pynumaflow/
strategy:
fail-fast: false
matrix:
python-version: [ "3.10" ]
name: Publish to PyPi
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --no-dev
- name: Build dist
run: uv build
- name: Publish
run: uv publish --token ${{ secrets.PYPI_PASSWORD }}