mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
fix: break validation
This commit is contained in:
parent
c8d9e52469
commit
5700b88292
3 changed files with 5 additions and 3 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
|
@ -32720,7 +32720,7 @@ const verify = (filename, platform, version, verbose, failCi) => validate_awaite
|
|||
'1',
|
||||
'--verify',
|
||||
external_node_path_namespaceObject.join(__dirname, `${uploaderName}.SHA256SUM.sig`),
|
||||
external_node_path_namespaceObject.join(__dirname, `${uploaderName}.SHA256SUM`),
|
||||
external_node_path_namespaceObject.join(__dirname, `${uploaderName}`),
|
||||
].join(' ');
|
||||
try {
|
||||
yield (0,external_node_child_process_namespaceObject.execSync)(command);
|
||||
|
|
@ -32745,6 +32745,7 @@ const verify = (filename, platform, version, verbose, failCi) => validate_awaite
|
|||
setFailure(`Codecov: Error importing gpg key: ${err.message}`, failCi);
|
||||
}
|
||||
});
|
||||
core.info('I ran!');
|
||||
yield importKey();
|
||||
yield verifySignature();
|
||||
yield validateSha();
|
||||
|
|
|
|||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -83,7 +83,7 @@ const verify = async (
|
|||
'1',
|
||||
'--verify',
|
||||
path.join(__dirname, `${uploaderName}.SHA256SUM.sig`),
|
||||
path.join(__dirname, `${uploaderName}.SHA256SUM`),
|
||||
path.join(__dirname, `${uploaderName}`),
|
||||
].join(' ');
|
||||
|
||||
try {
|
||||
|
|
@ -110,6 +110,7 @@ const verify = async (
|
|||
}
|
||||
};
|
||||
|
||||
core.info('I ran!');
|
||||
await importKey();
|
||||
await verifySignature();
|
||||
await validateSha();
|
||||
|
|
|
|||
Loading…
Reference in a new issue