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

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"