Skip to content

Commit 1122251

Browse files
committed
Another simplified rebuild
1 parent 8e1fbdf commit 1122251

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/dockerbuild.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ jobs:
2323
ret = []
2424
for i in flist:
2525
a,v = i.split('/')
26+
# Look for folders only
27+
if 'unsupported' in v:
28+
continue
29+
30+
if '.md' in v:
31+
continue
32+
2633
ret.append({'app':a, 'version':v })
2734
print(json.dumps({'include': ret}))
2835
EOF

0 commit comments

Comments
 (0)