Removed progress percentage as there is no way to deduce content length

This commit is contained in:
Michal Dorner 2021-02-15 21:06:19 +01:00
parent 1ae86a176d
commit e356ffe9d0
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
2 changed files with 2 additions and 4 deletions

View file

@ -68,7 +68,7 @@ export class ArtifactProvider implements InputProvider {
for (const art of artifacts) {
const fileName = `${art.name}.zip`
await downloadArtifact(this.octokit, art.id, fileName, art.size_in_bytes, this.token)
await downloadArtifact(this.octokit, art.id, fileName, this.token)
core.startGroup(`Reading archive ${fileName}`)
try {
const reportName = this.getReportName(art.name)