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

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

View File

@ -86,6 +86,12 @@ async function postCode() {
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,
"username": username,
@ -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);