Created
February 12, 2020 06:38
-
-
Save adrian-green/605fd90884bd906fc9e45bca4f313c9e to your computer and use it in GitHub Desktop.
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