File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -7181,10 +7181,12 @@ exports.default = _default;
7181
7181
/***/ 353:
7182
7182
/***/ (function(module, __unusedexports, __webpack_require__) {
7183
7183
7184
+ const core = __webpack_require__(470);
7184
7185
const tc = __webpack_require__(533);
7185
7186
7186
7187
class Utils {
7187
7188
static clearEnvironmentVariable(environmentVariable) {
7189
+ core.exportVariable(environmentVariable, '');
7188
7190
delete process.env[environmentVariable];
7189
7191
}
7190
7192
Original file line number Diff line number Diff line change
1
+ const core = require ( '@actions/core' ) ;
1
2
const tc = require ( '@actions/tool-cache' ) ;
2
3
3
4
class Utils {
4
5
static clearEnvironmentVariable ( environmentVariable ) {
6
+ core . exportVariable ( environmentVariable , '' ) ;
5
7
delete process . env [ environmentVariable ] ;
6
8
}
7
9
You can’t perform that action at this time.
0 commit comments