added debug

This commit is contained in:
Evgenii Korolevskii 2022-11-24 19:10:50 +01:00
parent d0a3b38995
commit a4d7bf0a41
2 changed files with 2 additions and 0 deletions

1
dist/setup/index.js vendored
View File

@ -105068,6 +105068,7 @@ function run() {
let installed = false;
while (!installed && version != "") {
try {
core.debug(`Trying to install version ${version}`);
yield installVersion(version);
installed = true;
}

View File

@ -36,6 +36,7 @@ async function run() {
let installed = false;
while (!installed && version != "") {
try {
core.debug(`Trying to install version ${version}`)
await installVersion(version)
installed = true
} catch (error) {