Skip to content

Commit

Permalink
Evaluate Build Dist Dir
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielvarona committed Apr 26, 2024
1 parent ab6d232 commit f26d633
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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="<PRITUNL API TOKEN>"
export PRITUNL_API_SECRET="<PRITUNL API SECRET>"
```

Initializing an API Instance.
Expand All @@ -42,7 +42,7 @@ pritunl = Pritunl()

## You can also initialize an instance by manually providing the arguments.
# pritunl = Pritunl(
# url="<PRITUNL API URL>",
# url="<PRITUNL BASE URL>",
# token="<PRITUNL API TOKEN>",
# secret="<PRITUNL API SECRET>"
# )
Expand Down

0 comments on commit f26d633

Please sign in to comment.