You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/docker_build.yml
+6-5
Original file line number
Diff line number
Diff line change
@@ -23,11 +23,11 @@ jobs:
23
23
ref: ${{ github.event.pull_request.head.sha }}
24
24
token: ${{ github.token }}
25
25
26
-
- name: Download maven artifacts
26
+
- name: Download artifacts
27
27
uses: actions/download-artifact@v4
28
28
with:
29
29
name: kafbat-ui-${{ inputs.version }}
30
-
path: api/target
30
+
path: api/build/libs
31
31
32
32
- name: Set up QEMU
33
33
uses: docker/setup-qemu-action@v3
@@ -44,9 +44,10 @@ jobs:
44
44
restore-keys: |
45
45
${{ runner.os }}-buildx-
46
46
47
-
# Build multiplatform images and loading them at the same time is not possible with default container runtime : https://github.com/docker/buildx/issues/59
47
+
# Build multi-platform images and loading them at the same time is not possible with default container runtime : https://github.com/docker/buildx/issues/59
48
48
# So let's use containerd instead as it supports this option
49
-
# Also containerd is one of the option to allow preserving provenance attestations :https://docs.docker.com/build/attestations/#creating-attestations
49
+
# Also containerd is one of the option to allow preserving provenance attestations:
0 commit comments