mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
Fix release assets not being executable (#3480)
This commit is contained in:
parent
31ddfd5a42
commit
c93ae0b05a
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -166,11 +166,11 @@ jobs:
|
|||
|
||||
- name: Pre-release (linux)
|
||||
if: startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test'
|
||||
run: gzip -c target/release/deno > target/release/deno_linux_x64.gz
|
||||
run: gzip -f -S _linux_x64.gz target/release/deno
|
||||
|
||||
- name: Pre-release (mac)
|
||||
if: startsWith(matrix.os, 'macOS') && matrix.kind == 'test'
|
||||
run: gzip -c target/release/deno > target/release/deno_osx_x64.gz
|
||||
run: gzip -f -S _osx_x64.gz target/release/deno
|
||||
|
||||
- name: Pre-release (windows)
|
||||
if: startsWith(matrix.os, 'windows') && matrix.kind == 'test'
|
||||
|
|
Loading…
Reference in a new issue