Skip to content

Commit d24acd6

Browse files
committed
CI: build release tags
1 parent be5b13e commit d24acd6

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/build-main.yml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- master
7+
tags:
8+
- "*-[0-9]+.*"
79

810
jobs:
911
build:

src/main/java/org/scijava/util/ClassUtils.java

+3
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ public static <A extends Annotation> void getAnnotatedFields(
189189
cacheAnnotatedObjects(c, query);
190190
cachedFields = fieldCache.getList(c, annotationClass);
191191
}
192+
// CTR START HERE: cachedFields should never be null now.
193+
// But it is, with FilamentDetector 1.0.0. Figure out why and fix.
194+
// Then cut release of scijava-common, and FilamentDetector.
192195

193196
fields.addAll(cachedFields);
194197
}

0 commit comments

Comments
 (0)