Skip to content

Instantly share code, notes, and snippets.

@evandbrown
Created March 23, 2015 17:35
Show Gist options
  • Save evandbrown/ad14bf8a48efa51d6bc8 to your computer and use it in GitHub Desktop.
Save evandbrown/ad14bf8a48efa51d6bc8 to your computer and use it in GitHub Desktop.
Release tags
#! /bin/bash
git tag | while read line; do
git archive --format=zip $line > release/${PWD##*/}-$line.zip
echo “Created release/${PWD##*/}-$line.zip”
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment