mirror of
https://github.com/ryanccn/attic-action.git
synced 2024-11-24 00:14:15 +00:00
push: don't report failure on error (#16)
This commit is contained in:
parent
4698511c85
commit
6689ac7697
1 changed files with 2 additions and 1 deletions
|
@ -32,7 +32,8 @@ export const push = async () => {
|
|||
}
|
||||
}
|
||||
} catch (e) {
|
||||
core.setFailed(`Action failed with error: ${e}`);
|
||||
core.warning(`Action encountered error: ${e}`);
|
||||
core.info("Not considering errors during push a failure.");
|
||||
}
|
||||
|
||||
core.endGroup();
|
||||
|
|
Loading…
Reference in a new issue