mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
quickfix(ci): only run "Build product size info" on main/tag (#12184)
This commit is contained in:
parent
958b374f09
commit
6decc4dd38
1 changed files with 3 additions and 1 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -543,7 +543,9 @@ jobs:
|
|||
git push origin gh-pages
|
||||
|
||||
- name: Build product size info
|
||||
if: matrix.job != 'lint' && matrix.profile != 'fastci'
|
||||
if: matrix.job != 'lint' && matrix.profile != 'fastci' &&
|
||||
github.repository == 'denoland/deno' &&
|
||||
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
|
||||
run: |
|
||||
du -hd1 "./target/${{ matrix.profile }}"
|
||||
du -ha "./target/${{ matrix.profile }}/deno"
|
||||
|
|
Loading…
Reference in a new issue