Skip to content

Supporting the feather file format (#29) #10

Supporting the feather file format (#29)

Supporting the feather file format (#29) #10

name: Publish package to PyPi
on:
push:
branches: [ "main" ]
jobs:
publish-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wheel
python -m pip install .
- name: Install pypa/build
run: >-
python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}