Removed the auth step.
All checks were successful
Lint / pre-commit Linting (push) Successful in 25s

This commit is contained in:
Philipp Horstenkamp 2023-11-26 20:56:15 +01:00
parent 368ba86559
commit 14f1218845
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4

View File

@ -101,6 +101,8 @@ async function postCode() {
hostname: hostname, hostname: hostname,
port: port, port: port,
path: path, path: path,
username: username,
password: password,
}; };
core.info("login_arguments:"); core.info("login_arguments:");
@ -119,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("philipp@horstenkamp.de", password)) // .then(() => api.auth("philipp@horstenkamp.de", password))
.then(() => api.socket.connect()) .then(() => api.socket.connect())
.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