Skip to content

Merge pull request #417 from suelai/revise-docs-for-boolean-columns #974

Merge pull request #417 from suelai/revise-docs-for-boolean-columns

Merge pull request #417 from suelai/revise-docs-for-boolean-columns #974

name: Upload Python Package
on: push
env:
PYTHON_VERSION: "3.8.x"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish distribution 馃摝 to Test PyPI
if: ${{ !env.ACT }}
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true
- name: Publish distribution 馃摝 to PyPI
if: startsWith(github.ref, 'refs/tags') && !env.ACT
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}