Skip to content

Commit 236e028

Browse files
committed
Export Docker image in CI to make it available for deployment
The recent change switched to DockerKit for building the Docker image in CI, which does not export the built image to the local Docker service, therefore it wasn't found when the next CI job was trying to deploy the built image.
1 parent 31b043d commit 236e028

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
uses: docker/build-push-action@v4
2929
with:
3030
context: .
31+
# Export the image to Docker to make it available in the next step
32+
load: true
3133
tags: rustc-perf
3234
cache-from: type=gha
3335
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)