Compare commits

...

3 Commits

Author SHA1 Message Date
Philipp Horstenkamp 2b9a04a136
Changed the dict order again.
Lint / pre-commit Linting (push) Successful in 25s Details
2023-11-26 21:54:46 +01:00
Philipp Horstenkamp 3eeeb73e0e
Reworked the login arguments again. 2023-11-26 21:54:05 +01:00
Philipp Horstenkamp 7c75b9d000
Reworked a message. 2023-11-26 21:50:25 +01:00
1 changed files with 3 additions and 6 deletions

View File

@ -97,12 +97,12 @@ async function postCode() {
const login_arguments = {
token: token,
username: username,
password: password,
protocol: protocol,
hostname: hostname,
port: port,
path: path,
username: "NameVergessen",
password: password,
};
core.info("login_arguments:");
@ -119,16 +119,13 @@ async function postCode() {
core.info(JSON.stringify(response, null, 2));
} else {
core.info(`Logging into as user ${username}`);
// await api.auth(username, password, login_arguments));
// await api.auth(username, password, login_arguments));
const response = Promise.resolve()
.then(() => api.auth(username, password, login_arguments))
.then(() => {
return api.code.set(branch, files_to_push);
})
.then(() => {
console.log("Code set successfully");
// Additional actions after setting the code, if necessary
console.log(`Code set successfully to ${branch}`);
})
.catch((err) => {
console.error("Error:", err);