diff --git a/.github/workflows/scripts/export-bom.py b/.github/workflows/scripts/export-bom.py index 4466e15..0d31d01 100644 --- a/.github/workflows/scripts/export-bom.py +++ b/.github/workflows/scripts/export-bom.py @@ -108,7 +108,7 @@ for version in versions: # handling images if column == 1 and row[3] != "FDM": f.write("") - elif column == 1 and row[3] == "FDM": + elif column == 1 and (row[3] == "FDM" or row[3] == "PCB"): f.write("") # handling links @@ -122,4 +122,4 @@ for version in versions: line_count += 1 f.write("") - f.close() \ No newline at end of file + f.close()