Merge branch 'main' into feat/window-manager

This commit is contained in:
utox39
2025-10-04 20:41:13 +02:00
committed by GitHub
2 changed files with 2 additions and 7 deletions

View File

@@ -65,17 +65,11 @@ jobs:
ls -la zig-out/bin/
file zig-out/bin/zigfetch-${{ matrix.target }}
- name: Create archive
run: |
tar -czf zigfetch-${{ matrix.target }}.tar.gz -C zig-out/bin zigfetch-${{ matrix.target }}
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: zigfetch-${{ matrix.target }}
path: |
# zig-out/bin/zigfetch-${{ matrix.target }}
zigfetch-${{ matrix.target }}.tar.gz
path: zig-out/bin/zigfetch-${{ matrix.target }}
retention-days: 3
test:

View File

@@ -52,6 +52,7 @@ pub fn getModulesTypes(allocator: std.mem.Allocator, config: ?std.json.Parsed(Co
if (module_enum) |m| {
try modules_list.append(m);
} else {
modules_list.deinit();
return error.InvalidModule;
}
}