diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-03-31 17:30:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 23:30:09 +0200 |
commit | 8a6b8faeb57767f456818b61cf5bed738fbcdf75 (patch) | |
tree | fc2c666f45d7e2421a777b94c14311e63092dd0d | |
parent | 7b675a332ca606e6192057da5635170c3dc7eb9a (diff) |
Remove old release files (#4545)
deno_install scripts were updated in
https://github.com/denoland/deno_install/commit/b635b525846d28d09fba1f6e88cccf1b5e66d499
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffe5a25c4..29ea996f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -163,26 +163,17 @@ jobs: if: startsWith(matrix.config.os, 'ubuntu') && matrix.config.kind == 'test_release' run: | cd target/release - # New filename zip -r deno-x86_64-unknown-linux-gnu.zip deno - # Old filename (remove once deno_install updated) - gzip -f -S _linux_x64.gz deno - name: Pre-release (mac) if: startsWith(matrix.config.os, 'macOS') && matrix.config.kind == 'test_release' run: | cd target/release - # New filename zip -r deno-x86_64-apple-darwin.zip deno - # Old filename (remove once deno_install updated) - gzip -f -S _osx_x64.gz deno - name: Pre-release (windows) if: startsWith(matrix.config.os, 'windows') && matrix.config.kind == 'test_release' run: | - # Old filename (remove once deno_install updated) - Compress-Archive -CompressionLevel Optimal -Force -Path target/release/deno.exe -DestinationPath target/release/deno_win_x64.zip - # New filename Compress-Archive -CompressionLevel Optimal -Force -Path target/release/deno.exe -DestinationPath target/release/deno-x86_64-pc-windows-msvc.zip - name: Release @@ -192,11 +183,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: files: | - # Old filenames (remove once deno_install updated) - target/release/deno_win_x64.zip - target/release/deno_linux_x64.gz - target/release/deno_osx_x64.gz - # New filenames target/release/deno-x86_64-pc-windows-msvc.zip target/release/deno-x86_64-unknown-linux-gnu.zip target/release/deno-x86_64-apple-darwin.zip |