fix: make return value None when velue is none and not use pydantic m… #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# # .github/workflows/release.yml | |
# name: Release | |
# on: | |
# release: | |
# types: [published] | |
# workflow_dispatch: | |
# jobs: | |
# release: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-python@v3 | |
# with: | |
# python-version: '3.9' | |
# architecture: x64 | |
# - run: pip install poetry==1.3.1 | |
# - run: poetry build | |
# - run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }} |