From d0ae89befae0850cc14ef776feb5d81efe11b567 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Thu, 10 Jan 2019 13:42:42 -0800 Subject: [PATCH] chore: fix tag cleanup (#16353) --- 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 ef9b2aebd7e9..27a66f5e6061 100755 --- a/script/release-artifact-cleanup.js +++ b/script/release-artifact-cleanup.js @@ -72,7 +72,7 @@ async function deleteTag (tag, targetRepo) { await octokit.git.deleteRef({ owner: 'electron', repo: targetRepo, - ref: tag + ref: `tags/${tag}` }) console.log(`${pass} successfully deleted tag ${tag} from ${targetRepo}`) } catch (err) {