This commit is contained in:
Marco Carrozzo
2023-01-11 11:55:01 +01:00
parent fa6d666e27
commit 608f78e72d
3 changed files with 84 additions and 4 deletions

View File

@@ -13,4 +13,11 @@ git tag -a ${VERSION} -m "${VERSION} [ci skip] "
git remote rm origin
GITHUB_REPO=https://$GITHUB_TOKEN:x-oauth-basic@github.com/Alfresco/alfresco-ng2-components.git
git remote add origin $GITHUB_REPO
git push origin --tags
if [[ "$1" == "dryrun=--dryrun" ]]; then
echo "dry run";
git tag | grep "${VERSION}"
else
echo "LIVE!"
# git push origin --tags
fi;