Skip to content

update to version 0.0.8 info in changelog #3

update to version 0.0.8 info in changelog

update to version 0.0.8 info in changelog #3

name: Build and Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Build Distribution
run: |
python setup.py sdist
- name: Publish to PyPI
run: |
pip install twine
twine upload dist/*
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}