Initial Commit
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
2024-04-15 13:26:48 -07:00
commit 67414acfed
5 changed files with 440 additions and 0 deletions

24
README.md Normal file
View File

@@ -0,0 +1,24 @@
# plugin-twine
This is a Drone/Woodpecker plugin for Python's Twine tool. It lets you upload a built python project to a pypi repository.
### Settings
- `username`: The username to authenticate to the repository as. (REQUIRED)
- `password`: The password to authenticate to the repository with. (REQUIRED)
- `repository_url`: The repository URL to upload the package to.
### Example
```yaml
steps:
publish:
image: gitea.elara.ws/music-kraken/plugin-twine
settings:
repository_url: "https://gitea.elara.ws/api/packages/music-kraken/pypi"
username:
from_secret: pypi_username
password:
from_secret: pypi_password
```