1 import * as core from '@actions/core'; 2 import * as main from './main'; 3 4 (async (): Promise<void> => { 5 try { 6 await main.run(); 7 } catch (e) { 8 core.setFailed(`Action failed with "${e.message}"`); 9 } 10 })();