Removed the auth step.
All checks were successful
Lint / pre-commit Linting (push) Successful in 25s
All checks were successful
Lint / pre-commit Linting (push) Successful in 25s
This commit is contained in:
parent
368ba86559
commit
14f1218845
4
index.js
4
index.js
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user