fix(sigstore_driver): Get all the digests in the image ref and sign them #608
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR build | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build.yml | |
| if: github.repository == 'blue-build/cli' | |
| permissions: | |
| contents: read # read repo contents | |
| packages: write # write package to ghcr | |
| id-token: write # docker auth | |
| actions: read # Provenance | |
| with: | |
| repo: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| secrets: | |
| SIGNING_SECRET: ${{ secrets.SIGNING_SECRET }} | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| permissions: | |
| contents: read # read repo contents | |
| packages: write # write package to ghcr | |
| id-token: write # docker auth | |
| with: | |
| repo: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| pr_event_number: ${{ github.event.number }} | |
| secrets: | |
| TEST_SIGNING_SECRET: ${{ secrets.TEST_SIGNING_SECRET }} |