ci: Move release sbom workflow to release publish job (#19464)

This commit is contained in:
Artem Sorokin
2025-09-12 14:29:15 +02:00
committed by GitHub
parent 0b4de85a08
commit a4dff23d92
2 changed files with 43 additions and 10 deletions

View File

@@ -141,6 +141,15 @@ jobs:
version: n8n@${{ needs.publish-to-npm.outputs.release }}
sourcemaps: packages/core/dist packages/workflow/dist/esm packages/@n8n/task-runner/dist
generate-and-attach-sbom:
name: Generate and Attach SBOM to Release
needs: [publish-to-npm, create-github-release]
uses: ./.github/workflows/sbom-generation-callable.yml
with:
n8n_version: ${{ needs.publish-to-npm.outputs.release }}
release_tag_ref: 'n8n@${{ needs.publish-to-npm.outputs.release }}'
secrets: inherit
trigger-release-note:
name: Trigger a release note
needs: [publish-to-npm, create-github-release]