Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Create main.yml

Create main.yml #1

Workflow file for this run

name: Update PyPi Package
on:
push:
branches: [ main ] # Trigger on push to main branch. Adjust as needed.
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Specify the Python version.
- name: Install dependencies
run: |
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*