Skip to content

fix: bump version

fix: bump version #52

Workflow file for this run

name: Release and PyPI Upload
on:
push:
tags:
- '*'
jobs:
# release:
# runs-on: ubuntu-latest
# concurrency: release
# environment: Secrets
# permissions:
# id-token: write
# contents: write
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - name: Python Semantic Release
# uses: python-semantic-release/python-semantic-release@master
# with:
# github_token: '${{ secrets.GH_TOKEN }}'
upload-to-pypi:
runs-on: ubuntu-latest
environment: Secrets
needs: []
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: '${{ secrets.PYPI_TOKEN }}'