diff options
author | Andy Hayden <andyhayden1@gmail.com> | 2019-12-10 21:48:53 -0800 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-12-11 13:48:53 +0800 |
commit | c93ae0b05a4c4fe5b43a9bd2b6430637b17979d0 (patch) | |
tree | d8779b4dd29a14b54d2e8cb1e1684438e288610d | |
parent | 31ddfd5a42d658b92e954e44d3326a8e37ac9198 (diff) |
Fix release assets not being executable (#3480)
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71a631153..1d5071a11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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' |