File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 80
80
81
81
- name : Extract the SBOM from the component
82
82
if : github.event_name != 'workflow_dispatch'
83
- run : auditable2cdx target/wasm32-wasip1/release/${{ env.COMPONENT_NAME_UNDERSCORED }} >> ${ env.COMPONENT_NAME }.spdx.json
83
+ run : auditable2cdx target/wasm32-wasip1/release/${{ env.COMPONENT_NAME_UNDERSCORED }} >> ${{ env.COMPONENT_NAME } }.spdx.json
84
84
85
85
- name : Publish `:<version>` to GitHub Container Registry
86
86
if : github.event_name != 'workflow_dispatch'
@@ -101,7 +101,7 @@ jobs:
101
101
102
102
- name : Sign the SBOM for the versioned Wasm component
103
103
if : github.event_name != 'workflow_dispatch'
104
- run : cosign attest --type spdxjson --predicate ${ env.COMPONENT_NAME }.spdx.json ${{ steps.publish_versioned.outputs.digest }}
104
+ run : cosign attest --type spdxjson --predicate ${{ env.COMPONENT_NAME } }.spdx.json ${{ steps.publish_versioned.outputs.digest }}
105
105
106
106
- name : Publish `:latest` release to GitHub Container Registry
107
107
if : github.event_name != 'workflow_dispatch'
@@ -122,4 +122,4 @@ jobs:
122
122
123
123
- name : Sign the SBOM for the latest Wasm component
124
124
if : github.event_name != 'workflow_dispatch'
125
- run : cosign attest --type spdxjson --predicate ${ env.COMPONENT_NAME }.spdx.json ${{ steps.publish_latest.outputs.digest }}
125
+ run : cosign attest --type spdxjson --predicate ${{ env.COMPONENT_NAME } }.spdx.json ${{ steps.publish_latest.outputs.digest }}
You can’t perform that action at this time.
0 commit comments