Last active
April 18, 2018 12:38
-
-
Save dutchmartin/a131a03a20f06c4ebd78abc8ddb5bfec to your computer and use it in GitHub Desktop.
deployment script
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
#!/usr/bin/env bash | |
###################### | |
## Deployment script # | |
###################### | |
## arg 1: git tag ## | |
## arg 2: repo-name ## | |
###################### | |
# Repo to deploy to: | |
USER="Yoast-dist" | |
REPO=$2 | |
REPO_URL="[email protected]:$USER/$REPO.git" | |
# Get the latest tag. | |
lastTag=$1 | |
mainDir=$(pwd) | |
# Clone the dist repo. | |
git clone ${REPO_URL} dist-repo --no-checkout | |
# Copy the git folder with the entire history. | |
cp -r ./dist-repo/.git ./artifact | |
# Navigate to the to be committed folder. | |
cd ./artifact | |
# Commit the files. | |
git add -A | |
git commit -m "commit version tag ${lastTag} " | |
# Tag the commit. | |
git tag ${lastTag} $(git rev-parse HEAD) | |
# Push to master. | |
git push -u origin master --tags -f -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment