Skip to content

fix: fail to get the current IP address (SSLError: HTTPSConnectionPoo… #2

fix: fail to get the current IP address (SSLError: HTTPSConnectionPoo…

fix: fail to get the current IP address (SSLError: HTTPSConnectionPoo… #2

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish to PyPI
run: |
curl -sSL https://install.python-poetry.org | python3 - --version 1.6.1
poetry config pypi-token.pypi $PYPI_TOKEN
poetry publish --build
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}