Skip to content

Merge pull request #182 from tfoster88/master #29

Merge pull request #182 from tfoster88/master

Merge pull request #182 from tfoster88/master #29

Workflow file for this run

name: Publish Package to Pypi
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Build and publish on testpypi
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
pip3 install build
pip3 install twine
rm -rf dist
python3 -m build
python3 -m twine upload --repository testpypi dist/* --verbose
- name: Build and publish on pypi
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
pip3 install build
pip3 install twine
rm -rf dist
python3 -m build
python3 -m twine upload --repository pypi dist/* --verbose