Skip to content

Instantly share code, notes, and snippets.

@qodunpob
Created August 2, 2018 06:08
Show Gist options
  • Save qodunpob/5012f6b6de30dc22d7e8f3a319f1636d to your computer and use it in GitHub Desktop.
Save qodunpob/5012f6b6de30dc22d7e8f3a319f1636d to your computer and use it in GitHub Desktop.
/* checking if the created tag exists in build repository */
const isTagExists = !!spawnSync(
'git',
['ls-remote', 'origin', `refs/tags/${tag}`],
getSpawnOptions(tempDir, 'pipe')
).stdout.toString().trim();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment