Skip to content

Commit 8d131b2

Browse files
authored
fix(ci) Don’t try to find a pull-request number for tags (#4740)
1 parent 305e514 commit 8d131b2

File tree

3 files changed

+150
-1215
lines changed

3 files changed

+150
-1215
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ jobs:
210210
command: |
211211
echo "» Branch: "${CIRCLE_BRANCH}
212212
echo
213-
if [[ ${CIRCLE_BRANCH} =~ ^[0-9]{3}-(summer|spring|winter)-[0-9]{2}$ ]] ; then
213+
if [[ ${CIRCLE_BRANCH} =~ ^[0-9]{3}-(summer|spring|winter)-[0-9]{2}$ || -n ${CIRCLE_TAG} ]] ; then
214214
echo "» Does not require a pull-request number"
215215
else
216216
if [ -z $(cat workspace/gh-pr-num.txt) ] ; then

0 commit comments

Comments
 (0)