This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Repo directory name | |
FNAME=${PWD##*/} | |
#Latest tag (release) | |
TAG=`git describe --abbrev=0 --tags` | |
#Create zip archive named after repo and tag, containing repo contents @HEAD | |
git archive -9 --prefix $FNAME/ HEAD -o ../$FNAME-$TAG.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment