Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Sep 14, 2021
1 parent 891c844 commit 77e7648
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ async function run() {

// Unpack the archive

const ormolu_extracted_dir = tool_cache.extractZip(ormolu_archive);
const ormolu_extracted_dir = process.env['RUNNER_TEMP'];
await tool_cache.extractZip(ormolu_archive, ormolu_extracted_dir);
const ormolu_extracted_path = path__WEBPACK_IMPORTED_MODULE_0__.join(ormolu_extracted_dir, 'ormolu');

// Cache ormolu executable
Expand Down
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ async function run() {

// Unpack the archive

const ormolu_extracted_dir = tool_cache.extractZip(ormolu_archive);
const ormolu_extracted_dir = process.env['RUNNER_TEMP'];
await tool_cache.extractZip(ormolu_archive, ormolu_extracted_dir);
const ormolu_extracted_path = path.join(ormolu_extracted_dir, 'ormolu');

// Cache ormolu executable
Expand Down

0 comments on commit 77e7648

Please sign in to comment.