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"