Skip to content

Commit cd9df6c

Browse files
committed
Try 0.0.2
1 parent 9b024a5 commit cd9df6c

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
version: 0.14.0
2222
- name: Build
23-
run: zig build install --release=safe # TODO: Change?
23+
run: zig build install
2424
- name: Upload artifact
2525
uses: actions/upload-artifact@v4
2626
with:

build.zig

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,10 @@ pub fn build(b: *std.Build) void {
1111
.optimize = optimize,
1212
});
1313

14-
const lib = b.addLibrary(.{
15-
.linkage = .static,
16-
.name = "zenvars",
14+
b.installArtifact(b.addStaticLibrary(.{
15+
.name = "zstb",
1716
.root_module = lib_mod,
18-
});
19-
20-
b.installArtifact(lib);
17+
}));
2118

2219
// Examples
2320
const exe_mod = b.createModule(.{

0 commit comments

Comments
 (0)