Skip to content

Commit 8ed00b2

Browse files
authored
ci: Fix typo in tag match expression (#937)
This should match tags like `tket2-v0.12.1` or `tket2-exts-v0.9.1`. Looks like I accidentally added some extra characters.
1 parent 3ab838d commit 8ed00b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ jobs:
333333
else
334334
BASE_SHA=$(git rev-parse origin/$TARGET_REF)
335335
fi
336-
LAST_TAG=$(git describe --abbrev=0 --match="tket2t c-*" $BASE_SHA)
336+
LAST_TAG=$(git describe --abbrev=0 --match="tket2-*" $BASE_SHA)
337337
echo "Latest tag on target: $LAST_TAG"
338338
339339
python ./scripts/check_extension_versions.py $LAST_TAG

0 commit comments

Comments
 (0)