Custom json decoder for bytearray serialization (#192) #39
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
name: "[v4-client-py-v2] Publish to PyPI" | |
on: # yamllint disable-line rule:truthy | |
push: | |
paths: | |
- 'v4-client-py-v2/**' | |
branches: | |
- main | |
jobs: | |
build_and_publish: | |
environment: main | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./v4-client-py-v2 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- name: Cache poetry dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pypoetry | |
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-poetry- | |
- name: Install poetry | |
run: pip install poetry | |
- name: Install Dependencies | |
run: poetry install | |
- name: Build package | |
run: poetry build | |
- name: Publish to PyPI | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
run: | | |
poetry run twine upload -r pypi dist/* |