From feb8e7a62379198aa150c30d6dba324ad504d8e3 Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Thu, 14 May 2026 14:12:16 -0600 Subject: [PATCH] a --- install_pypi_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_pypi_config.sh b/install_pypi_config.sh index c57f397..ea13556 100755 --- a/install_pypi_config.sh +++ b/install_pypi_config.sh @@ -12,7 +12,7 @@ password = {password} # Replace placeholders with environment variables config_output=$(echo "$config_template" | \ - sed -e "s/{repository}/$INPUT_PYPI_REPO_DOMAIN/g" \ + sed -e "s,{repository},$INPUT_PYPI_REPO_DOMAIN,g" \ -e "s/{username}/$INPUT_PYPI_REPO_USER/g" \ -e "s/{password}/$INPUT_PYPI_REPO_PASS/g")