5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-07 02:36:55 +00:00

Revert "fix: set failed when npm install fails"

This reverts commit d4ecc5e312.
This commit is contained in:
Geoffrey.C 2024-12-10 15:04:52 +08:00
parent d4ecc5e312
commit 85dc1784ae

View file

@ -1,4 +1,3 @@
const core = require('@actions/core');
const exec = require('./src/_exec'); const exec = require('./src/_exec');
const path = require('path'); const path = require('path');
@ -17,4 +16,4 @@ const run = async () => {
require('./src/index')(); require('./src/index')();
}; };
run().catch(core.setFailed); run().catch(console.error);