Skip to content

Commit

Permalink
quickfix(ci): only run "Build product size info" on main/tag (denolan…
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronO committed Sep 22, 2021
1 parent 958b374 commit 6decc4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6decc4d

Please sign in to comment.