v0.0.55: get rid of an extraneous await
This commit is contained in:
+2
-2
@@ -74773,8 +74773,8 @@ async function run() {
|
||||
if (!response.ok) {
|
||||
throw new Error(`Failed to fetch status page: ${response.statusText}`);
|
||||
}
|
||||
const registryURL = new URL(await (await response.json()).url);
|
||||
console.log(`registryURL (supplied): ${core.getInput('registry')}`);
|
||||
const registryURL = new URL((await response.json()).url);
|
||||
console.log(`registryURL (supplied): ${core.getInput('registry')}`); // TODO: get rid of the `registry` input
|
||||
console.log(`registryURL (from URL): ${registryURL}`);
|
||||
// Paths to be included in the OCI image
|
||||
const paths = core.getInput('path').split(' ');
|
||||
|
||||
Reference in New Issue
Block a user