Skip to content

Instantly share code, notes, and snippets.

@LUN7
Created September 25, 2022 05:11
Show Gist options
  • Save LUN7/0276596588f88335325c56873cf401c1 to your computer and use it in GitHub Desktop.
Save LUN7/0276596588f88335325c56873cf401c1 to your computer and use it in GitHub Desktop.
Delete all draft release with gh cli
gh release list | grep Draft | awk '{print $1 " \t"}' | while read -r line; do gh release delete -y "$line"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment