Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ jobs:
packages: write
contents: read

build-downloader:
name: Build downloader image, sign it, and generate SBOMs
uses: ./.github/workflows/downloader-build.yml
permissions:
id-token: write
packages: write
contents: read

publish-chart:
name: Publish the helm chart to the configured OCI registry
uses: ./.github/workflows/helm-chart-release.yml
Expand All @@ -41,6 +49,7 @@ jobs:
- ci
- build-manager
- build-installer
- build-downloader

release:
name: Create release
Expand All @@ -49,6 +58,7 @@ jobs:
- ci
- build-manager
- build-installer
- build-downloader
- publish-chart

permissions:
Expand Down Expand Up @@ -119,6 +129,12 @@ jobs:
'node-installer-sbom-arm64.spdx',
'node-installer-sbom-arm64.spdx.cert',
'node-installer-sbom-arm64.spdx.sig',
'shim-downloader-sbom-amd64.spdx',
'shim-downloader-sbom-amd64.spdx.cert',
'shim-downloader-sbom-amd64.spdx.sig',
'shim-downloader-sbom-arm64.spdx',
'shim-downloader-sbom-arm64.spdx.cert',
'shim-downloader-sbom-arm64.spdx.sig',
`runtime-class-manager-${chartVersion}.tgz`,
]
const {RELEASE_ID} = process.env
Expand Down
Loading