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 a8e7f1d commit dfdf138Copy full SHA for dfdf138
.github/workflows/container-build-push.yml
@@ -37,12 +37,18 @@ on:
37
type=ref,event=branch
38
type=ref,event=tag
39
type=raw,value=latest,enable={{is_default_branch}}
40
+ outputs:
41
+ image_digest:
42
+ description: "Image digest"
43
+ value: ${{ jobs.container-image-release.outputs.output_digest }}
44
45
jobs:
46
container-image-release:
47
name: Make container image release
48
runs-on: ${{ fromJson(inputs.runners) }}
49
timeout-minutes: 15
50
51
+ output_digest: ${{ steps.build_and_push.outputs.digest }}
52
53
steps:
54
- name: Check out repo
@@ -68,6 +74,7 @@ jobs:
68
74
password: ${{ secrets.GITHUB_TOKEN }}
69
75
70
76
- name: Build and push
77
+ id: build_and_push
71
78
uses: docker/build-push-action@v6
72
79
with:
73
80
context: ${{ inputs.context }}
0 commit comments