We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df523c3 commit febcf32Copy full SHA for febcf32
.github/workflows/release.js
@@ -26,8 +26,17 @@ module.exports = async ({ github, context }) => {
26
}
27
await Promise.all([
28
uploadReleaseAsset("http0.so", "http0-linux-amd64/http0.so"),
29
+ uploadReleaseAsset("http0-no-net.so", "http0-linux-amd64/http0-no-net.so"),
30
uploadReleaseAsset("http0.dylib", "http0-darwin-amd64/http0.dylib"),
31
+ uploadReleaseAsset(
32
+ "http0-no-net.dylib",
33
+ "http0-darwin-amd64/http0-no-net.dylib"
34
+ ),
35
uploadReleaseAsset("http0.dll", "http0-windows-amd64/http0.dll"),
36
37
+ "http0-no-net.dll",
38
+ "http0-windows-amd64/http0-no-net.dll"
39
40
]);
41
42
return;
0 commit comments