Skip to content

remove duplicated README #3

remove duplicated README

remove duplicated README #3

Workflow file for this run

name: Publish on pypi
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
# Specifying a GitHub environment is optional, but strongly encouraged
environment: release
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: Build package
run: |
python -m pip install poetry
poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1