Skip to content

Commit

Permalink
RUNNER_TEMP
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Dec 15, 2019
1 parent 3c8c8ba commit 3d326f1
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 @@ -57,7 +57,7 @@ const core = __webpack_require__(470);
const fs = __webpack_require__(747);

// get input parameter values from config
var fileName = process.env.TMP + '\\' + core.getInput('fileName');
var fileName = process.env.RUNNER_TEMP + '\\' + core.getInput('fileName');
var encodedString = core.getInput('encodedString');

// most @actions toolkit packages have async methods
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const core = require('@actions/core');
const fs = require('fs');

// get input parameter values from config
var fileName = process.env.TMP + '\\' + core.getInput('fileName');
var fileName = process.env.RUNNER_TEMP + '\\' + core.getInput('fileName');
var encodedString = core.getInput('encodedString');

// most @actions toolkit packages have async methods
Expand Down

0 comments on commit 3d326f1

Please sign in to comment.