diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96d8b2a..f63a884 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,10 @@ jobs: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} # Build the Package - poetry build + poetry build --output=./dist + + # Dist Dir + ls -la ./dist # Publish to PyPI - poetry publish --repository pypi + # poetry publish --repository pypi diff --git a/README.md b/README.md index 714e203..94e71b6 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ Before using the API library including the use of the CLI feature, we need to pr ```bash export PRITUNL_BASE_URL="https://vpn.domain.tld/" -export PRITUNL_API_TOKEN="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" -export PRITUNL_API_SECRET="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" +export PRITUNL_API_TOKEN="" +export PRITUNL_API_SECRET="" ``` Initializing an API Instance. @@ -42,7 +42,7 @@ pritunl = Pritunl() ## You can also initialize an instance by manually providing the arguments. # pritunl = Pritunl( -# url="", +# url="", # token="", # secret="" # )