From 3db79c9629f78c90b37bc3dc59b8928e59a32d21 Mon Sep 17 00:00:00 2001 From: Ciara Stacke Date: Wed, 22 Oct 2025 17:57:47 +0100 Subject: [PATCH] Fix update draft and goreleaser on release --- .github/workflows/ci.yml | 2 +- .goreleaser.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a75463e46..adde66e349 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -281,7 +281,7 @@ jobs: notes-header: | *Below is the auto-generated changelog, which includes all PRs that went into the release. For a shorter version that highlights only important changes, see [CHANGELOG.md](https://github.com/nginx/nginx-gateway-fabric/blob/{{version}}/CHANGELOG.md).* - if: ${{ github.event_name == 'push' && github.ref != 'refs/heads/main' }} + if: ${{ (github.event_name == 'push' && github.ref != 'refs/heads/main') || (github.event_name == 'workflow_dispatch' && inputs.is_production_release) }} - name: Download Syft if: ${{ inputs.is_production_release }} diff --git a/.goreleaser.yml b/.goreleaser.yml index d04ac3a976..24f3c0af01 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -44,6 +44,7 @@ signs: - sign-blob - "--output-signature=${signature}" - "--output-certificate=${certificate}" + - "--bundle=${signature}.bundle" - "${artifact}" - "--yes"