Skip to content

NeuralCompression 0.3.1 Release, documentation fix #6

NeuralCompression 0.3.1 Release, documentation fix

NeuralCompression 0.3.1 Release, documentation fix #6

Workflow file for this run

name: Upload Python Package
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install build dependencies
run: pip install -U build setuptools wheel
- name: Build package
run: python -m build .
- name: Publish package
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true