mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
Fix 'git_reset_from_last_stable_tag' helper function
Setting $CI_COMMIT_TAG before calling 'git_reset_from_tag' will skip the git reset stuff
This commit is contained in:
parent
358fa7575a
commit
2f8d413223
@ -130,9 +130,11 @@ function git_reset_from_last_stable_tag() {
|
|||||||
local git_last_stable_tag="$(get_git_last_stable_tag)"
|
local git_last_stable_tag="$(get_git_last_stable_tag)"
|
||||||
if [ -n "$git_last_stable_tag" ]; then
|
if [ -n "$git_last_stable_tag" ]; then
|
||||||
export CI_COMMIT_REF_PROTECTED="true"
|
export CI_COMMIT_REF_PROTECTED="true"
|
||||||
export CI_COMMIT_TAG="$git_last_stable_tag"
|
|
||||||
export GIT_RESET_TAG="$git_last_stable_tag"
|
export GIT_RESET_TAG="$git_last_stable_tag"
|
||||||
git_reset_from_tag
|
git_reset_from_tag
|
||||||
|
# NOTE: Setting $CI_COMMIT_TAG before calling 'git_reset_from_tag' will skip the git reset stuff
|
||||||
|
# So you must keep the line below after the 'git_reset_from_tag' call
|
||||||
|
export CI_COMMIT_TAG="$git_last_stable_tag"
|
||||||
else
|
else
|
||||||
echo WARNING: Last stable git tag not found
|
echo WARNING: Last stable git tag not found
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user