From 7059576bd1eb0b974231019d182f8944a8603f17 Mon Sep 17 00:00:00 2001 From: Leonardo Petrora <29212725+lpetrora@users.noreply.github.com> Date: Tue, 5 Nov 2024 09:58:24 +0100 Subject: [PATCH] Skip signed plugin build on pull requests A pull request from a fork is not able to build the signed plugin due to the secret API KEY, so this step should be skipped. In other instances, like releases and daily builds, the signed plugin should be created. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a7397b..6246d74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,6 +74,7 @@ jobs: uses: actions/checkout@v4 - name: Build frontend signed + if: github.event_name != 'pull_request' id: build-signed uses: ./.github/build/ env: