File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 23
23
// sub-release adds $DENO_TARGET for all the target platforms and runs sub-sub-release
24
24
"sub-release" : " DENO_TARGET=x86_64-unknown-linux-gnu deno task sub-sub-release && DENO_TARGET=x86_64-pc-windows-msvc deno task sub-sub-release && DENO_TARGET=x86_64-apple-darwin deno task sub-sub-release && DENO_TARGET=aarch64-apple-darwin deno task sub-sub-release" ,
25
25
// sub-sub-release adds $DENO_EXT using both $DENO_TARGET and $DENO_REL (specifies the target and output directory) then runs sub-compile
26
- "sub-sub-release" : " DENO_EXT=\" --target=$DENO_TARGET -o ./release/$DENO_REL/$DENO_TARGET/booger\" deno task sub-compile"
26
+ // after compiling, it zips the binary using $BOOGER_VER provided to the original task
27
+ "sub-sub-release" : " DENO_EXT=\" --target=$DENO_TARGET -o ./release/$DENO_REL/$DENO_TARGET/booger\" deno task sub-compile && sh -c \" chmod +x ./release/$DENO_REL/$DENO_TARGET/booger*\" && sh -c \" zip -j ./release/booger-$BOOGER_VER-$DENO_REL-$DENO_TARGET.zip ./release/$DENO_REL/$DENO_TARGET/booger*\" "
27
28
},
28
29
"imports" : {
29
30
"std/" : " https://deno.land/std@0.191.0/" ,
You can’t perform that action at this time.
0 commit comments