mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
fix: put it outside?
This commit is contained in:
parent
ae4db43540
commit
4e27f93862
3 changed files with 4 additions and 3 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -32635,8 +32635,8 @@ var validate_awaiter = (undefined && undefined.__awaiter) || function (thisArg,
|
||||||
|
|
||||||
|
|
||||||
const verify = (filename, platform, version, verbose, failCi) => validate_awaiter(void 0, void 0, void 0, function* () {
|
const verify = (filename, platform, version, verbose, failCi) => validate_awaiter(void 0, void 0, void 0, function* () {
|
||||||
|
yield exec.exec(__nccwpck_require__.ab + "test.sh");
|
||||||
try {
|
try {
|
||||||
yield exec.exec(__nccwpck_require__.ab + "test.sh");
|
|
||||||
const uploaderName = getUploaderName(platform);
|
const uploaderName = getUploaderName(platform);
|
||||||
// Get SHASUM and SHASUM signature files
|
// Get SHASUM and SHASUM signature files
|
||||||
console.log(`${getBaseUrl(platform, version)}.SHA256SUM`);
|
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
|
|
@ -20,8 +20,9 @@ const verify = async (
|
||||||
verbose: boolean,
|
verbose: boolean,
|
||||||
failCi: boolean,
|
failCi: boolean,
|
||||||
): Promise<void> => {
|
): Promise<void> => {
|
||||||
|
await exec.exec(path.join(__dirname, 'test.sh'));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await exec.exec(path.join(__dirname, 'test.sh'));
|
|
||||||
const uploaderName = getUploaderName(platform);
|
const uploaderName = getUploaderName(platform);
|
||||||
|
|
||||||
// Get SHASUM and SHASUM signature files
|
// Get SHASUM and SHASUM signature files
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue