Skip to content

Commit

Permalink
Add Github action to deploy to Pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
zgypa committed Jun 22, 2024
1 parent f4cc38f commit 71b44f2
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/deploy-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Deploy to PyPI

on:
push:
branches:
- master

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' # Ensure this matches your project requirements

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and check package
run: |
python setup.py sdist bdist_wheel
twine check dist/*
- name: Upload to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload dist/*

0 comments on commit 71b44f2

Please sign in to comment.