Skip to content

bump: version 1.2.12 → 1.2.13 #15

bump: version 1.2.12 → 1.2.13

bump: version 1.2.12 → 1.2.13 #15

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- "*"
permissions:
contents: read
jobs:
deploy:
name: Deploy package to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
- 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_API_TOKEN }}
skip_existing: true