adjust ci to build for dev branch #2
This file contains 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: Build container image, sign it, and generate SBOMs | ||
on: | ||
workflow_call: | ||
outputs: | ||
digest: | ||
description: "Container image digest" | ||
value: ${{jobs.build.outputs.digest}} | ||
push: | ||
branches: | ||
- "kwasm-lifecycle-manager" | ||
jobs: | ||
build: | ||
uses: ./.github/workflows/container-image.yml | ||
Check failure on line 16 in .github/workflows/container-build.yml GitHub Actions / Build container image, sign it, and generate SBOMsInvalid workflow file
|
||
permissions: | ||
packages: write | ||
with: | ||
push-image: true | ||
sign: | ||
needs: build | ||
uses: ./.github/workflows/sign-image.yml | ||
permissions: | ||
packages: write | ||
id-token: write | ||
with: | ||
image-digest: ${{ needs.build.outputs.digest }} | ||
sbom: | ||
needs: build | ||
uses: ./.github/workflows/sbom.yml | ||
permissions: | ||
packages: write | ||
id-token: write | ||
with: | ||
image-digest: ${{ needs.build.outputs.digest }} |