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 060b829 commit ee1342dCopy full SHA for ee1342d
.github/workflows/development_image_release.yaml
@@ -67,6 +67,11 @@ jobs:
67
id: get_version
68
run: echo "SERVICE_VERSION=$(node -p "require('./service/package.json').version")" >> $GITHUB_OUTPUT
69
70
+ - name: Extract metadata for the image
71
+ uses: docker/metadata-action@v5
72
+ with:
73
+ images: ${{ vars.DOCKER_REGISTRY }}
74
+
75
- name: Build Image and Push
76
uses: docker/build-push-action@v5
77
with:
@@ -76,4 +81,8 @@ jobs:
81
# This should not be taged as latest
82
tags: ${{vars.DOCKER_REGISTRY}}:${{steps.get_version.outputs.SERVICE_VERSION}}
78
83
push: true
84
+ # Note: This includes build args in the published provenance.
85
+ # Do not use this if secrets are passed in as args.
86
+ provenance: mode=max
87
+ sbom: true
79
88
file: ./service/Dockerfile
0 commit comments