feat: initial release

This commit is contained in:
Geoffroy Empain
2020-12-02 15:40:43 +01:00
commit 764c62b6b8
45 changed files with 11052 additions and 0 deletions

30
scripts/rebase-git-branch.sh Executable file
View File

@ -0,0 +1,30 @@
[[ "$1" == "" ]] && echo 'missing base branch ($1)' && exit 1;
BASE_BRANCH="$1"
[[ "$2" == "" ]] && echo 'missing head branch ($2)' && exit 1;
HEAD_BRANCH="$2"
# save head to come back to it after we're done rebasing
HEAD=$(git rev-parse HEAD | tr -d '\n')
# reduce log verbosity
git config advice.detachedHead false
# cleanup workspace
git reset --hard
# update everything
git fetch
# move to head branch and update
git checkout $HEAD_BRANCH
git pull --rebase
# move to base branch
git checkout $BASE_BRANCH
git branch -u origin/$BASE_BRANCH
git pull --rebase
#git push --set-upstream origin $BASE_BRANCH
git merge --ff -m "chore: realign $BASE_BRANCH on $HEAD_BRANCH [ci skip]" $HEAD_BRANCH
git push
git checkout $HEAD

12
scripts/setup-git.sh Executable file
View File

@ -0,0 +1,12 @@
[[ "$1" == "" ]] && echo 'missing deploy key ($1)' && exit 1;
DEPLOY_KEY="$1"
# install ssh and add ssh key for semantic-release
which ssh-agent || apk add openssh
eval $(ssh-agent -s)
echo "$DEPLOY_KEY" | tr -d '\r' | ssh-add -
mkdir -p ~/.ssh
chmod 700 ~/.ssh
# setup git
git config user.name "semantic-release"
git config user.email "release@meli.sh"