Skip to content

Commit 215c495

Browse files
add support for test tag
1 parent b0b5fc2 commit 215c495

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

main.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,13 @@ func scanForJobs(ctx context.Context, jobs chan<- Job, root string) error {
6767
filepath.Join(root, "node-*", "uploads", "*", versionPattern, timeShasumPattern, "data"), // version
6868
filepath.Join(root, "node-*", "uploads", "*", prefixedVersionPattern, timeShasumPattern, "data"), // prefixed version
6969
filepath.Join(root, "node-*", "uploads", "*", "latest", timeShasumPattern, "data"), // latest tag
70+
filepath.Join(root, "node-*", "uploads", "*", "test", timeShasumPattern, "data"), // test tag
7071

7172
// with namespace
7273
filepath.Join(root, "node-*", "uploads", "*", "*", versionPattern, timeShasumPattern, "data"), // version
7374
filepath.Join(root, "node-*", "uploads", "*", "*", prefixedVersionPattern, timeShasumPattern, "data"), // prefixed version
7475
filepath.Join(root, "node-*", "uploads", "*", "*", "latest", timeShasumPattern, "data"), // latest tag
76+
filepath.Join(root, "node-*", "uploads", "*", "*", "test", timeShasumPattern, "data"), // test tag
7577
}
7678

7779
err := filepath.WalkDir(root, func(path string, d fs.DirEntry, err error) error {

0 commit comments

Comments
 (0)