Added more testing.
All checks were successful
Lint / pre-commit Linting (push) Successful in 50s

This commit is contained in:
Philipp Horstenkamp 2023-11-26 21:06:25 +01:00
parent 8c4feac99a
commit a114309427
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4

View File

@ -121,7 +121,7 @@ async function postCode() {
} else { } else {
core.info(`Logging into as user ${username}`); core.info(`Logging into as user ${username}`);
const response = Promise.resolve() const response = Promise.resolve()
.then(() => api.auth(username, password)) .then(() => api.auth("NameVergessen", password))
.then(() => { .then(() => {
return api.code.set(branch, code); // Set the code on the specified branch return api.code.set(branch, code); // Set the code on the specified branch
}) })