Fix connection errors if a retry is encountered (#82)

* Use @actions/artifact 0.3.2

* setFailed if certain items don't upload

* Update verion #
This commit is contained in:
Konrad Pabjan
2020-05-18 15:43:29 +02:00
committed by GitHub
parent 9bcc1e21d0
commit 97b7dace6c
4 changed files with 131 additions and 80 deletions

View File

@ -21,16 +21,24 @@ async function run(): Promise<void> {
const artifactClient = create()
const options: UploadOptions = {
continueOnError: true
continueOnError: false
}
await artifactClient.uploadArtifact(
const uploadResponse = await artifactClient.uploadArtifact(
name || getDefaultArtifactName(),
searchResult.filesToUpload,
searchResult.rootDirectory,
options
)
core.info('Artifact upload has finished successfully!')
if (uploadResponse.failedItems.length > 0) {
core.setFailed(
`An error was encountered when uploading ${uploadResponse.artifactName}. There were ${uploadResponse.failedItems.length} items that failed to upload.`
)
} else {
core.info(
`Artifact ${uploadResponse.artifactName} has been successfully uploaded!`
)
}
}
} catch (err) {
core.setFailed(err.message)