Skip to content

Commit 937d709

Browse files
author
David Zuckerman
committed
more changes for buildx in release and build
1 parent ea886e3 commit 937d709

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ jobs:
8181
DOCKER_APP_IMAGE_ARM64: ${{ needs.build.outputs.image-arm64 }}
8282
DOCKER_APP_IMAGE_X64: ${{ needs.build.outputs.image-x64 }}
8383
outputs:
84-
image: ${{ steps.meta.outputs.tags }}
84+
build-image: ${{ steps.meta.outputs.tags }}
85+
build-image-arm: ${{ needs.build.outputs.build-image-arm }}
86+
build-image-x64: ${{ needs.build.outputs.build-image-x64 }}
8587
steps:
8688
- name: Checkout code
8789
uses: actions/checkout@v4
@@ -115,7 +117,7 @@ jobs:
115117
- merge
116118
env:
117119
COMPOSE_FILE: docker-compose.yml:docker-compose.ci.yml
118-
DOCKER_APP_IMAGE: ${{ needs.merge.outputs.image }}
120+
DOCKER_APP_IMAGE: ${{ needs.merge.outputs.build-image }}
119121
steps:
120122
- name: Checkout code
121123
uses: actions/checkout@v4
@@ -168,7 +170,7 @@ jobs:
168170
- merge
169171
- test
170172
env:
171-
DOCKER_APP_IMAGE: ${{ needs.merge.outputs.image }}
173+
DOCKER_APP_IMAGE: ${{ needs.merge.outputs.build-image }}
172174
steps:
173175
- name: Checkout code
174176
uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- '**'
7+
workflow_call:
78
workflow_dispatch:
89

910
env:

0 commit comments

Comments
 (0)