Skip to content

Merge branch 'main' of https://github.com/CakeCrusher/openplugin #50

Merge branch 'main' of https://github.com/CakeCrusher/openplugin

Merge branch 'main' of https://github.com/CakeCrusher/openplugin #50

name: pypiClientPublish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build package
run: |
cd pypi-client
python setup.py sdist bdist_wheel
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_CLIENT_TOKEN }}
run: |
python -m twine upload --repository-url https://upload.pypi.org/legacy/ pypi-client/dist/* --verbose