Skip to content

Refactor/ptb 20.8 (#159) #2

Refactor/ptb 20.8 (#159)

Refactor/ptb 20.8 (#159) #2

Workflow file for this run

name: Publish
on:
push:
tags:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install build
- name: Build package
run: python3 -m build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true