We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c83bf7a commit f378ab9Copy full SHA for f378ab9
src/main.ts
@@ -58,10 +58,11 @@ async function run(): Promise<void> {
58
const emacsZip = await tc.downloadTool(zipPath);
59
const emacsDir = await tc.extractZip(emacsZip, __dirname);
60
61
- const emacsBin = __dirname + "\\bin";
+ const emacsBin = emacsDir + "\\bin";
62
console.log("emacsBin: " + emacsBin);
63
+ const cachtedPath = await tc.cacheDir(emacsBin);
64
+ core.addPath(emacsBin);
65
core.exportVariable("PATH", "%PATH%;" + emacsBin);
-
66
core.endGroup();
67
68
} catch (error) {
0 commit comments