Skip to content

Commit

Permalink
Remove version number from runner link and prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianrath committed Jan 1, 2024
1 parent a611d8d commit a3d3b12
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37835,7 +37835,7 @@ function executeRunner(runnerPath, graphFile) {
const buf = Buffer.from(data.content, "base64");
fs_1.default.writeFileSync(graphFile, buf.toString("utf-8"));
const customEnv = Object.assign(Object.assign({}, process.env), { GRAPH_FILE: graphFile });
child_process_1.default.execSync(runnerPath, { stdio: "inherit", env: customEnv });
child_process_1.default.execSync(`${runnerPath} run`, { stdio: "inherit", env: customEnv });
});
}
/**
Expand Down Expand Up @@ -44013,7 +44013,7 @@ const got = source_create(defaults);
/***/ ((module) => {

"use strict";
module.exports = JSON.parse('{"name":"action","version":"0.4.35"}');
module.exports = JSON.parse('{"name":"action","version":"0.8.20"}');

/***/ })

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "action",
"version": "0.4.35",
"version": "0.8.20",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/bundled_package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "action",
"version": "0.4.35"
"version": "0.8.20"
}
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async function executeRunner(
fs.writeFileSync(graphFile, buf.toString("utf-8"));

const customEnv = { ...process.env, GRAPH_FILE: graphFile };
cp.execSync(runnerPath, { stdio: "inherit", env: customEnv });
cp.execSync(`${runnerPath} run`, { stdio: "inherit", env: customEnv });
}

/**
Expand Down

0 comments on commit a3d3b12

Please sign in to comment.