electron/script/release/bin/publish-to-github.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
159 B
TypeScript
Raw Normal View History

import { makeRelease } from '../release';
makeRelease().catch((err) => {
console.error('Error occurred while making release:', err);
process.exit(1);
});