Skip to content

chore: bump version #11

chore: bump version

chore: bump version #11

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- "**"
jobs:
deploy:
runs-on: ubuntu-latest
environment: "deploy"
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- 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.TOKEN }}