Skip to content

Release SBOM Assets #23

Release SBOM Assets

Release SBOM Assets #23

Workflow file for this run

name: Release SBOM Assets
on:
release:
types:
- created
jobs:
release-9-x:

Check failure on line 9 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release SBOM Assets

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 9, Col: 3): Error calling workflow 'SonarSource/docker-sonarqube/.github/workflows/release-template.yml@a364b5374f0b76da8e66f5e26632231d47cb2a8f'. The nested job 'release' is requesting 'contents: write, id-token: write', but is only allowed 'contents: read, id-token: none'.
name: Upload Release Assets for 9-X releases
if: contains(github.event.release.name, '9.')
strategy:
fail-fast: false
matrix:
tag:
- 9-community
- 9-developer
- 9-enterprise
- 9-datacenter-app
- 9-datacenter-search
uses: ./.github/workflows/release-template.yml
with:
tag: ${{ matrix.tag }}
release-10-x:
name: Upload Release Assets for 10-X releases
if: contains(github.event.release.name, '10.')
strategy:
fail-fast: false
matrix:
tag:
- 10-developer
- 10-enterprise
- 10-datacenter-app
- 10-datacenter-search
uses: ./.github/workflows/release-template.yml
with:
tag: ${{ matrix.tag }}
release-community-build:
name: Upload Release Assets for community-build release
if: contains(github.event.release.name, 'Community Build')
strategy:
fail-fast: false
matrix:
tag:
- community
uses: ./.github/workflows/release-template.yml
with:
tag: ${{ matrix.tag }}