Skip to content

fix: add target.wheel in pyproject.toml #10

fix: add target.wheel in pyproject.toml

fix: add target.wheel in pyproject.toml #10

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Extract tag name
id: tag
run: echo TAG_NAME=$(echo $GITHUB_REF | cut -d / -f 3) >> $GITHUB_OUTPUT
- name: Update version in pyproject.toml
run: >-
sed -i "s/0.0.0/${{ steps.tag.outputs.TAG_NAME }}/" pyproject.toml
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@v1.8.6
with:
password: ${{ secrets.PYPI_API_TOKEN }}