fix: action failure status (#151)
Close #149 * chore: fix path to .gitconfig
This commit is contained in:
parent
de65f3e128
commit
94853340b9
3 changed files with 23 additions and 23 deletions
|
|
@ -1,3 +1,8 @@
|
|||
import * as core from '@actions/core';
|
||||
import * as main from './main';
|
||||
|
||||
main.run();
|
||||
try {
|
||||
main.run();
|
||||
} catch (e) {
|
||||
core.setFailed(`Action failed with error ${e}`);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue