Skip to content

Commit

Permalink
fix: fullVersion not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed May 16, 2023
1 parent 2b938c3 commit edaa906
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6755,7 +6755,7 @@ async function main() {

const extractPath = await _actions_tool_cache__WEBPACK_IMPORTED_MODULE_1__.extractTar(tarPath, undefined, ["xzC"]);

cachedPath = await _actions_tool_cache__WEBPACK_IMPORTED_MODULE_1__.cacheDir(extractPath, "aiken", fullVersion);
cachedPath = await _actions_tool_cache__WEBPACK_IMPORTED_MODULE_1__.cacheDir(extractPath, "aiken", version);
}

_actions_core__WEBPACK_IMPORTED_MODULE_0__.addPath(cachedPath);
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function main() {

const extractPath = await tc.extractTar(tarPath, undefined, ["xzC"]);

cachedPath = await tc.cacheDir(extractPath, "aiken", fullVersion);
cachedPath = await tc.cacheDir(extractPath, "aiken", version);
}

core.addPath(cachedPath);
Expand Down

0 comments on commit edaa906

Please sign in to comment.