mirror of
https://github.com/actions/upload-artifact.git
synced 2025-04-05 05:59:39 +00:00
Add artifact-id output to v4-beta (#448)
* Add artifact-id to outputs * ncc --------- Co-authored-by: Rob Herley <robherley@github.com>
This commit is contained in:
6
dist/index.js
vendored
6
dist/index.js
vendored
@ -121406,9 +121406,6 @@ function run() {
|
||||
const s = searchResult.filesToUpload.length === 1 ? '' : 's';
|
||||
core.info(`With the provided path, there will be ${searchResult.filesToUpload.length} file${s} uploaded`);
|
||||
core.debug(`Root artifact directory is ${searchResult.rootDirectory}`);
|
||||
if (searchResult.filesToUpload.length > 10000) {
|
||||
core.warning(`There are over 10,000 files in this artifact, consider creating an archive before upload to improve the upload performance.`);
|
||||
}
|
||||
const artifactClient = (0, artifact_1.create)();
|
||||
const options = {};
|
||||
if (inputs.retentionDays) {
|
||||
@ -121419,7 +121416,8 @@ function run() {
|
||||
core.setFailed(`An error was encountered when uploading ${inputs.artifactName}.`);
|
||||
}
|
||||
else {
|
||||
core.info(`Artifact ${inputs.artifactName} has been successfully uploaded! Final size is ${uploadResponse.size} bytes. Artifact ID is ${uploadResponse.id}}`);
|
||||
core.info(`Artifact ${inputs.artifactName} has been successfully uploaded! Final size is ${uploadResponse.size} bytes. Artifact ID is ${uploadResponse.id}`);
|
||||
core.setOutput('artifact-id', uploadResponse.id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user