Update src/setup-python.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Dan Hecker 2025-12-19 08:08:12 -05:00 committed by GitHub
parent f054be5a92
commit 24f18a93cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -164,6 +164,8 @@ async function run() {
if (pypiUrl) {
const pypiUsername = core.getInput('pypi-username');
const pypiPassword = core.getInput('pypi-password');
core.setSecret(pypiUsername);
core.setSecret(pypiPassword);
await configurePipRepository(pypiUrl, pypiUsername, pypiPassword);
}
const pipInstall = core.getInput('pip-install');