We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b024a5 commit cd9df6cCopy full SHA for cd9df6c
.github/workflows/release.yml
@@ -20,7 +20,7 @@ jobs:
20
with:
21
version: 0.14.0
22
- name: Build
23
- run: zig build install --release=safe # TODO: Change?
+ run: zig build install
24
- name: Upload artifact
25
uses: actions/upload-artifact@v4
26
build.zig
@@ -11,13 +11,10 @@ pub fn build(b: *std.Build) void {
11
.optimize = optimize,
12
});
13
14
- const lib = b.addLibrary(.{
15
- .linkage = .static,
16
- .name = "zenvars",
+ b.installArtifact(b.addStaticLibrary(.{
+ .name = "zstb",
17
.root_module = lib_mod,
18
- });
19
-
- b.installArtifact(lib);
+ }));
// Examples
const exe_mod = b.createModule(.{
0 commit comments