diff options
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 445a563bf..ae75f9b6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |