mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
Add validation for post step (#3)
* work on fixing cache post step * fix tests
This commit is contained in:
parent
5f3f74c689
commit
53f73ba16b
6 changed files with 31 additions and 4 deletions
7
dist/setup/index.js
vendored
7
dist/setup/index.js
vendored
|
@ -19083,7 +19083,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.getToolcachePath = exports.isVersionSatisfies = exports.getDownloadArchiveExtension = exports.extractJdkFile = exports.getVersionFromToolcachePath = exports.getBooleanInput = exports.getTempDir = void 0;
|
||||
exports.isJobStatusSuccess = exports.getToolcachePath = exports.isVersionSatisfies = exports.getDownloadArchiveExtension = exports.extractJdkFile = exports.getVersionFromToolcachePath = exports.getBooleanInput = exports.getTempDir = void 0;
|
||||
const os_1 = __importDefault(__webpack_require__(87));
|
||||
const path_1 = __importDefault(__webpack_require__(622));
|
||||
const fs = __importStar(__webpack_require__(747));
|
||||
|
@ -19154,6 +19154,11 @@ function getToolcachePath(toolName, version, architecture) {
|
|||
return null;
|
||||
}
|
||||
exports.getToolcachePath = getToolcachePath;
|
||||
function isJobStatusSuccess() {
|
||||
const jobStatus = core.getInput('job-status');
|
||||
return jobStatus === 'success';
|
||||
}
|
||||
exports.isJobStatusSuccess = isJobStatusSuccess;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue