From a58ab74db50f6ac3e6deefaedd3e5fbd4387e22d Mon Sep 17 00:00:00 2001 From: Anthony RAYMOND Date: Mon, 1 Aug 2022 22:56:13 +0200 Subject: [PATCH] update publish script --- publish.sh | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) diff --git a/publish.sh b/publish.sh index 4f0492a..d94b870 100644 --- a/publish.sh +++ b/publish.sh @@ -46,53 +46,3 @@ mvn versions:set -DnextSnapshot=true -DprocessAllModules=true -DgenerateBackupPo git add pom.xml ./*/pom.xml && git commit -m "Prepare next iteration" && git push origin master shopt -u nullglob - - - - - - - - - - - - - - - -#!/bin/bash - -versionPattern="[0-9]+\.[0-9]+\.[0-9]+(\-beta)*" - -tagName="" -while [[ ! $tagName =~ $versionPattern ]]; do - read -p "Tag name (version): " tagName -done - - -if ! grep -Fq "$tagName" ./pom.xml; then - echo -e "$(tput setaf 1)WOW, wait! The provided tag does not match the pom.xml version$(tput sgr0)" - exit 1 -fi - -if GIT_DIR=./.git git rev-parse $tagName >/dev/null 2>&1 -then - echo -e "$(tput setaf 1)ERROR: Tag $tagName already exists$(tput sgr0)" -fi - -if git tag $tagName; then - echo -e "$(tput setaf 2)Tag created$(tput sgr0)" -else - echo -e "$(tput setaf 1)ERROR: Failed to create tag locally$(tput sgr0)" - exit 1 -fi - -if git push origin $tagName; then - echo -e "$(tput setaf 2)Tag pushed$(tput sgr0)" -else - echo -e "$(tput setaf 1)ERROR: Failed to push tag$(tput sgr0)" - exit 1 -fi - -echo -e "$(tput setaf 2)Everything went fine :)$(tput sgr0)"