mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
ci: check Deno binary only in tagged commits (#12509)
This commit is contained in:
parent
f250faaf05
commit
46bc1175e5
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -448,7 +448,7 @@ jobs:
|
|||
# Since all tests are skipped when we're building a tagged commit
|
||||
# this is a minimal check to ensure that binary is not corrupted
|
||||
- name: Check Deno Binary
|
||||
if: matrix.profile == 'release'
|
||||
if: matrix.profile == 'release' && startsWith(github.ref, 'refs/tags/')
|
||||
shell: bash
|
||||
run: target/release/deno eval "console.log(1+2)" | grep 3
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue