We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22385f1 commit 0bfc767Copy full SHA for 0bfc767
1 file changed
.github/workflows/release.yml
@@ -28,15 +28,6 @@ jobs:
28
- name: Set up Docker Buildx
29
uses: docker/setup-buildx-action@v3
30
31
- - name: Build sandbox Docker image for ${{ matrix.arch }}
32
- run: |
33
- cd sandbox
34
- docker buildx build \
35
- --platform linux/${{ matrix.arch }} \
36
- --tag e2b-sandbox:latest \
37
- --load \
38
- .
39
-
40
- name: Clean up disk space
41
run: |
42
df -h
@@ -47,6 +38,15 @@ jobs:
47
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
48
49
+ - name: Build sandbox Docker image for ${{ matrix.arch }}
+ run: |
43
+ cd sandbox
44
+ docker buildx build \
45
+ --platform linux/${{ matrix.arch }} \
46
+ --tag e2b-sandbox:latest \
+ --load \
+ .
+
50
- name: Save Docker image to tar.gz
51
52
docker save e2b-sandbox:latest | gzip -1 > e2b-sandbox-${{ matrix.arch }}.tar.gz
0 commit comments