Skip to content

Commit

Permalink
build: fixing matrix strategy for image provenance (#410)
Browse files Browse the repository at this point in the history
**Requirements**

- [ ] I have added test coverage for new or changed functionality
- [ ] I have followed the repository's [pull request submission
guidelines](../blob/master/CONTRIBUTING.md#submitting-pull-requests)
- [ ] I have validated my changes against all supported platform
versions

**Related issues**

Provide links to any issues in this repository or elsewhere relating to
this pull request.

**Describe the solution you've provided**

Provide a clear and concise description of what you expect to happen.

**Describe alternatives you've considered**

Provide a clear and concise description of any alternative solutions or
features you've considered.

**Additional context**

Add any other context about the pull request here.
  • Loading branch information
rsoberano-ld committed Jun 26, 2024
1 parent 4b72066 commit bf174f2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,11 @@ jobs:
packages: write
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_container_slsa3.yml@v1.10.0
strategy:
matrix: ${{fromJson(needs.release-relay.outputs.images_and_digests)}}
matrix:
images_and_digests: ${{fromJson(needs.release-relay.outputs.images_and_digests)}}
with:
image: ${{ matrix.image }}
digest: ${{ matrix.digest }}
image: ${{ matrix.images_and_digests.image }}
digest: ${{ matrix.images_and_digests.digest }}
registry-username: ${{ github.actor }}
secrets:
registry-password: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bf174f2

Please sign in to comment.