Skip to content

increment to version 0.3.4 #10

increment to version 0.3.4

increment to version 0.3.4 #10

Workflow file for this run

name: Publish Python package to PyPI
on:
push:
branches:
- master # Set this to your default branch
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # Use the Python version compatible with your project
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build package
run: python -m build
- name: Publish to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/master')
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_TOKEN }}
user: __token__