Skip to content

refactor the util.ip.get_current_ip_address function (#29) #8

refactor the util.ip.get_current_ip_address function (#29)

refactor the util.ip.get_current_ip_address function (#29) #8

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 }}