From 5e1d6435a01f0394f15bc3984b4964bf890f5ccc Mon Sep 17 00:00:00 2001 From: "trop[bot]" Date: Thu, 10 Jan 2019 14:11:21 -0800 Subject: [PATCH] chore: fix tag cleanup (#16355) --- script/release-artifact-cleanup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/release-artifact-cleanup.js b/script/release-artifact-cleanup.js index 1231f2ce055e..7016cd0c5cd7 100755 --- a/script/release-artifact-cleanup.js +++ b/script/release-artifact-cleanup.js @@ -80,7 +80,7 @@ async function deleteTag (tag, targetRepo) { await github.gitdata.deleteReference({ owner: 'electron', repo: targetRepo, - ref: tag + ref: `tags/${tag}` }) console.log(`Successfully deleted tag ${tag} from ${targetRepo}`) } catch (err) {