mirror of https://github.com/actions/setup-python
removed some debugging
This commit is contained in:
parent
d148396753
commit
ba50e5ed8e
|
@ -91639,7 +91639,6 @@ function findReleaseFromManifest(semanticVersionSpec, architecture, manifest) {
|
|||
manifest = yield getManifest();
|
||||
}
|
||||
const foundRelease = yield tc.findFromManifest(semanticVersionSpec, false, manifest, architecture);
|
||||
core.info(`Found release: ${JSON.stringify(foundRelease)}`);
|
||||
return foundRelease;
|
||||
});
|
||||
}
|
||||
|
@ -91649,7 +91648,6 @@ function getManifest() {
|
|||
try {
|
||||
const manifestFromRepo = yield getManifestFromRepo();
|
||||
core.info('Successfully fetched the manifest from the repo.');
|
||||
core.info(`Manifest from repo: ${JSON.stringify(manifestFromRepo)}`);
|
||||
validateManifest(manifestFromRepo);
|
||||
return manifestFromRepo;
|
||||
}
|
||||
|
@ -91659,7 +91657,6 @@ function getManifest() {
|
|||
try {
|
||||
const manifestFromURL = yield getManifestFromURL();
|
||||
core.info('Successfully fetched the manifest from the URL.');
|
||||
core.info(`Manifest from URL: ${JSON.stringify(manifestFromURL)}`);
|
||||
return manifestFromURL;
|
||||
}
|
||||
catch (err) {
|
||||
|
|
|
@ -28,7 +28,6 @@ export async function findReleaseFromManifest(
|
|||
manifest,
|
||||
architecture
|
||||
);
|
||||
core.info(`Found release: ${JSON.stringify(foundRelease)}`);
|
||||
return foundRelease;
|
||||
}
|
||||
|
||||
|
@ -36,7 +35,6 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
|
|||
try {
|
||||
const manifestFromRepo = await getManifestFromRepo();
|
||||
core.info('Successfully fetched the manifest from the repo.');
|
||||
core.info(`Manifest from repo: ${JSON.stringify(manifestFromRepo)}`);
|
||||
validateManifest(manifestFromRepo);
|
||||
return manifestFromRepo;
|
||||
} catch (err) {
|
||||
|
@ -45,7 +43,6 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
|
|||
try {
|
||||
const manifestFromURL = await getManifestFromURL();
|
||||
core.info('Successfully fetched the manifest from the URL.');
|
||||
core.info(`Manifest from URL: ${JSON.stringify(manifestFromURL)}`);
|
||||
return manifestFromURL;
|
||||
} catch (err) {
|
||||
logError('Fetching the manifest via the URL failed.', err);
|
||||
|
|
Loading…
Reference in New Issue