We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b21fef + 8578594 commit e476333Copy full SHA for e476333
action.yml
@@ -293,6 +293,16 @@ runs:
293
done <<< "${{ inputs.gitops-dev }}"
294
fi
295
296
+ - name: Emit Image Build Event to Upwind.io
297
+ if: vars.UPWIND_CLIENT_ID != '' && secrets.UPWIND_CLIENT_SECRET != '' && vars.UPWIND_ORGANIZATION_ID != ''
298
+ uses: upwindsecurity/create-image-build-event-action@v2
299
+ with:
300
+ image: "${{ inputs.docker-image }}"
301
+ image_sha: "${{ steps.docker_build.outputs.digest }}"
302
+ upwind_client_id: ${{ vars.UPWIND_CLIENT_ID }}
303
+ upwind_client_secret: ${{ secrets.UPWIND_CLIENT_SECRET }}
304
+ upwind_organization_id: ${{ vars.UPWIND_ORGANIZATION_ID }}
305
+
306
branding:
307
icon: 'git-merge'
308
color: 'blue'
0 commit comments