This commit is contained in:
parent
115ccf72f9
commit
05127d7306
@ -22,18 +22,15 @@ pipeline:
|
||||
image: debian:11-slim
|
||||
pull: true
|
||||
commands:
|
||||
- if [[ $TAG =~ ^v1\...\..rc.$ ]] \
|
||||
then \
|
||||
echo "Tag ${TAG} appears to be a release candidate, terminating build." && \
|
||||
exit 1 \
|
||||
elif [[ $TAG =~ ^v1\...\..$ ]] \
|
||||
then \
|
||||
echo "Tag ${TAG} appears to be a release tag, proceeding." && \
|
||||
exit 0 \
|
||||
else \
|
||||
echo "Unable to determine nature of tag, terminating build." && \
|
||||
exit 1 \
|
||||
fi
|
||||
- if [[ $TAG =~ ^v1\...\..rc.$ ]]
|
||||
- then
|
||||
- echo "Tag ${TAG} appears to be a release candidate, terminating build." && exit 1
|
||||
- elif [[ $TAG =~ ^v1\...\..$ ]]
|
||||
- then
|
||||
- echo "Tag ${TAG} appears to be a release tag, proceeding." && exit 0
|
||||
- else
|
||||
- echo "Unable to determine nature of tag, terminating build." && exit 1
|
||||
- fi
|
||||
clone-source:
|
||||
image: docker:git
|
||||
commands:
|
||||
|
Loading…
Reference in New Issue
Block a user