Skip to content

Merge pull request #104 from Eric-Mendes/refactor/to_excel-and-to_rub… #47

Merge pull request #104 from Eric-Mendes/refactor/to_excel-and-to_rub…

Merge pull request #104 from Eric-Mendes/refactor/to_excel-and-to_rub… #47

name: Publish to TestPyPI
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.x
- name: Install build dependencies
run: python -m pip install -U setuptools wheel build
- name: Build
run: python -m build .
- name: Publish
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true