We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43fb209 commit 2cc2139Copy full SHA for 2cc2139
.github/workflows/pipeline.yml
@@ -225,7 +225,12 @@ jobs:
225
sbom: true
226
provenance: true
227
- name: Convert Image to Tar
228
- run: docker save -o companieshouse.tar ${{ steps.meta.outputs.tags }}
+ run: |
229
+ docker images
230
+ tags="${{ steps.meta.outputs.tags }}"
231
+ tags="${tags//,/ }" # replace commas with spaces
232
+ echo "Saving images: $tags"
233
+ docker save -o companieshouse.tar ${{ steps.meta.outputs.tags }}
234
- name: Scan Image
235
uses: aquasecurity/[email protected]
236
with:
0 commit comments