From c6411911581524bc0ed6f35b0d5be3d0a1f9a41a Mon Sep 17 00:00:00 2001 From: RJ Sampson Date: Sun, 23 Jun 2024 07:47:17 -0600 Subject: [PATCH] fix(ci): Don't sign kernel on PR We're using our akmods secret to do this which is not readily available to anyone outside the org Signed-off-by: RJ Sampson --- .github/workflows/reusable-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 904c4c63..93bb9913 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -188,6 +188,7 @@ jobs: - name: Sign kernel uses: ublue-os/kernel-signer@v0.2.3 + if: github.event_name != 'pull_request' with: image: ${{ steps.build_image.outputs.image }} default-tag: ${{ env.DEFAULT_TAG }}