Reworked the index.
Lint / pre-commit Linting (push) Failing after 24s Details

This commit is contained in:
Philipp Horstenkamp 2023-11-26 17:43:07 +01:00
parent 7b0ee47c08
commit f8ce3ef53a
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
1 changed files with 10 additions and 0 deletions

View File

@ -85,6 +85,12 @@ async function postCode() {
const branch = core.getInput("branch") || "default";
const files_to_push = await readFilesIntoDict(pattern, prefix);
Object.keys(files_to_push).forEach(key => {
core.info(`Key: ${key}`);
});
core.info(files_to_push);
const login_arguments = {
"token": token,
@ -96,6 +102,10 @@ async function postCode() {
"path": path,
};
Object.keys(login_arguments).forEach(key => {
core.info(`Key: ${key}`);
});
const errorMessage = validateAuthentication(token, username, password);
if (errorMessage) {
core.error(errorMessage);