From b0d8d66bc96b91397d77344b9d05ab67ed557b95 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Wed, 17 Jul 2024 10:55:20 +0200 Subject: [PATCH] Run installer check on main only --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02e54c0..587f57a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,9 +61,12 @@ jobs: command: run args: --release --features user-doc -- user-doc ./docs + # check installer on main only, as we reach the github api limit too + # quickly check-installer: name: "check installer" runs-on: ${{ matrix.os }} + if: github.ref == 'refs/heads/main' strategy: matrix: os: [macos-latest, ubuntu-latest]