From 330c18ccc4a49c35bb15dfbbe53282d43eab23a6 Mon Sep 17 00:00:00 2001 From: Jelena Dokic Date: Sun, 4 Feb 2024 15:16:58 +0100 Subject: [PATCH] publish options --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 48194e3..a1b24bc 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ The following will build and publish the python package to the PyPI using the la pypi_token: ${{ secrets.PYPI_TOKEN }} ``` -Python and poetry versions can be specified in inputs as well as the build_format, allow_poetry_pre_release and poetry_install_options. +Python and poetry versions can be specified in inputs as well as the build_format, allow_poetry_pre_release, poetry_install_options and poetry_publish_options. ```yaml - name: Build and publish to pypi @@ -97,6 +97,7 @@ Python and poetry versions can be specified in inputs as well as the build_forma build_format: "sdist" allow_poetry_pre_release: "yes" poetry_install_options: "--sync --no-root" + poetry_publish_options: "--dry-run" ``` Repository can be changed to TestPyPI or a private wheels repo by specifying repository_name and repository_url.