From fc9c7d036784416c3f1a29d4ad111d0f4ea4890e Mon Sep 17 00:00:00 2001 From: Dan Hecker Date: Sat, 20 Dec 2025 13:34:40 -0500 Subject: [PATCH] Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 245711e8..0bed318e 100644 --- a/README.md +++ b/README.md @@ -122,8 +122,9 @@ steps: - run: pip install -r requirements.txt ``` -The action will create a `pip.conf` (Linux/macOS) or `pip.ini` (Windows) file in the appropriate location with the configured repository URL and credentials. All subsequent pip commands will use the configured repository. +The action will create or overwrite a `pip.conf` (Linux/macOS) or `pip.ini` (Windows) file in the appropriate location with the configured repository URL and credentials. All subsequent pip commands will use the configured repository. +> **Warning:** If a `pip.conf` or `pip.ini` file already exists at that location, its contents will be overwritten by this action for the duration of the job. Existing settings are not merged or preserved. **Input parameters:** - `pypi-url`: The URL of your custom PyPI repository (e.g., `https://nexus.example.com/repository/pypi/simple`) - `pypi-username` (optional): Username for authentication with the custom repository