Go to file
Elara 6c6723de55
ci/woodpecker/push/woodpecker Pipeline was successful Details
Fix file glob
2024-04-26 02:51:46 +00:00
.woodpecker.yml Initial Commit 2024-04-15 13:26:48 -07:00
Dockerfile Initial Commit 2024-04-15 13:26:48 -07:00
LICENSE Initial Commit 2024-04-15 13:26:48 -07:00
README.md Add status badge and mention comment setting in README 2024-04-15 13:39:02 -07:00
docs.md Add woodpecker docs [skip ci] 2024-04-15 21:32:27 +00:00
plugin.sh Fix file glob 2024-04-26 02:51:46 +00:00

README.md

plugin-twine

status-badge

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)
  • comment: The comment to include with the distribution file.
  • repository_url: The repository URL to upload the package to.

Example

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