Skip to content

fix(generic): do not flatten a nested object that is null in any row … #29

fix(generic): do not flatten a nested object that is null in any row …

fix(generic): do not flatten a nested object that is null in any row … #29

Workflow file for this run

name: Publish
on:
push:
tags: ['v*']
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install build twine
- run: pip install -e . && pip install pytest && pytest tests/ -v
- run: python -m build
- run: twine upload --verbose dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true