Skip to content

Commit

Permalink
Fix release assets not being executable (denoland#3480)
Browse files Browse the repository at this point in the history
  • Loading branch information
hayd authored and ry committed Dec 11, 2019
1 parent 31ddfd5 commit c93ae0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit c93ae0b

Please sign in to comment.