test: Add fail to fetch latest due to 404 (#137)

This commit is contained in:
Shohei Ueda 2020-01-21 01:35:00 +09:00 committed by GitHub
parent 0311892edd
commit b55f1c81fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 11 deletions

View file

@ -56,6 +56,6 @@ export async function run(): Promise<ActionResult> {
return result;
} catch (e) {
core.setFailed(`Action failed with error ${e}`);
return e;
throw e;
}
}