Tiny logging tweek

This commit is contained in:
Nick Cipollo
2020-03-05 13:12:22 -05:00
parent 2ea88b1f32
commit 791611e03e

View File

@@ -53,7 +53,7 @@ export class GithubArtifactUploader implements ArtifactUploader {
for (const artifact of artifacts) { for (const artifact of artifacts) {
const asset = assetByName[artifact.name] const asset = assetByName[artifact.name]
if (asset) { if (asset) {
core.debug(`Deleting exist artifact ${artifact.name}...`) core.debug(`Deleting existing artifact ${artifact.name}...`)
await this.releases.deleteArtifact(asset.id) await this.releases.deleteArtifact(asset.id)
} }
} }