Skip to content

setup: bump dcnum from 0.25.2 to 0.25.3 #30

setup: bump dcnum from 0.25.2 to 0.25.3

setup: bump dcnum from 0.25.2 to 0.25.3 #30

Workflow file for this run

name: Deploy to PyPI
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up Python
uses: actions/setup-python@main
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine pipx
pip install .
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
run: |
pipx run build --sdist --wheel
twine upload --skip-existing dist/*