mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
fix: put it in the top dir
This commit is contained in:
parent
e035f3d84b
commit
985c9ee923
3 changed files with 3 additions and 3 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -32636,7 +32636,7 @@ var validate_awaiter = (undefined && undefined.__awaiter) || function (thisArg,
|
|||
|
||||
const verify = (filename, platform, version, verbose, failCi) => validate_awaiter(void 0, void 0, void 0, function* () {
|
||||
try {
|
||||
yield exec.exec(__nccwpck_require__.ab + "test.sh");
|
||||
yield exec.exec(external_path_.join(__dirname, 'test.sh'));
|
||||
const uploaderName = getUploaderName(platform);
|
||||
// Get SHASUM and SHASUM signature files
|
||||
console.log(`${getBaseUrl(platform, version)}.SHA256SUM`);
|
||||
|
|
|
|||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -21,7 +21,7 @@ const verify = async (
|
|||
failCi: boolean,
|
||||
): Promise<void> => {
|
||||
try {
|
||||
await exec.exec(path.join(__dirname, 'scripts', 'test.sh'));
|
||||
await exec.exec(path.join(__dirname, 'test.sh'));
|
||||
const uploaderName = getUploaderName(platform);
|
||||
|
||||
// Get SHASUM and SHASUM signature files
|
||||
|
|
|
|||
Loading…
Reference in a new issue