Skip to content

Commit febcf32

Browse files
committed
Add -no-net to release assets
1 parent df523c3 commit febcf32

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,17 @@ module.exports = async ({ github, context }) => {
2626
}
2727
await Promise.all([
2828
uploadReleaseAsset("http0.so", "http0-linux-amd64/http0.so"),
29+
uploadReleaseAsset("http0-no-net.so", "http0-linux-amd64/http0-no-net.so"),
2930
uploadReleaseAsset("http0.dylib", "http0-darwin-amd64/http0.dylib"),
31+
uploadReleaseAsset(
32+
"http0-no-net.dylib",
33+
"http0-darwin-amd64/http0-no-net.dylib"
34+
),
3035
uploadReleaseAsset("http0.dll", "http0-windows-amd64/http0.dll"),
36+
uploadReleaseAsset(
37+
"http0-no-net.dll",
38+
"http0-windows-amd64/http0-no-net.dll"
39+
),
3140
]);
3241

3342
return;

0 commit comments

Comments
 (0)