Skip to content

Commit

Permalink
Add executable_path output
Browse files Browse the repository at this point in the history
  • Loading branch information
Spartan322 committed Dec 6, 2024
1 parent 4b3088b commit b78014f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58755,6 +58755,7 @@ async function prepareExecutable() {
external_fs_.chmodSync(executablePath, '755');
}
godotExecutablePath = executablePath;
core.setOutput('executable_path', godotExecutablePath);
}
async function prepareTemplates3() {
const templateFile = external_path_.join(GODOT_WORKING_PATH, GODOT_TEMPLATES_FILENAME);
Expand Down
1 change: 1 addition & 0 deletions src/godot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ async function prepareExecutable(): Promise<void> {
}

godotExecutablePath = executablePath;
core.setOutput('executable_path', godotExecutablePath);
}

async function prepareTemplates3(): Promise<void> {
Expand Down

0 comments on commit b78014f

Please sign in to comment.