chore: fix tag cleanup (#16355)

This commit is contained in:
trop[bot] 2019-01-10 14:11:21 -08:00 committed by Shelley Vohr
parent ae67beee2f
commit 5e1d6435a0

View file

@ -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) {