Skip to content

Add encodings to modules.STDLIB_PY3 (#78) #8

Add encodings to modules.STDLIB_PY3 (#78)

Add encodings to modules.STDLIB_PY3 (#78) #8

Workflow file for this run

name: Upload Python Package to PyPI
on:
push:
tags:
- '*'
jobs:
deploy:
if: github.repository_owner == 'arkq'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py bdist_wheel
twine upload dist/*