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 a886177 commit 56b975cCopy full SHA for 56b975c
github-action-workflows/my-ce-app/build-push.yml
@@ -13,6 +13,7 @@ jobs:
13
uses: actions/checkout@v3
14
15
- name: Build and Push to ICR
16
+ id: build-step
17
uses: ibm/code-engine-github-action@v1
18
with:
19
api-key: ${{ secrets.IBM_IAM_API_KEY }}
@@ -22,4 +23,7 @@ jobs:
22
23
name: 'my-ce-app'
24
image: private.de.icr.io/my-namespace/my-image:latest
25
registry-secret: ce-auto-icr-private-eu-de
- build-source: './my-ce-app'
26
+ build-source: './my-ce-app'
27
+ - name: Get image with digest
28
+ run: |
29
+ echo "Image with digest: ${{ steps.build-step.outputs.image-with-digest }}"
0 commit comments