Skip to content

Commit 6ba75ee

Browse files
committed
chore: distinct names
1 parent ad505a1 commit 6ba75ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
strategy:
3838
matrix:
39-
linux_arch: [linux/s390x, linux/arm64, linux/amd64]
39+
linux_arch: [s390x, arm64, amd64]
4040
steps:
4141
- uses: actions/checkout@v4
4242

@@ -49,13 +49,13 @@ jobs:
4949
- name: Run Buildx
5050
run: |
5151
docker buildx create --name builder --bootstrap --use
52-
docker buildx build --platform ${{ matrix.linux_arch }} --output type=local,dest=./prebuilds,platform-split=false -f ./.github/docker/Dockerfile.glibc .
52+
docker buildx build --platform linux/${{ matrix.linux_arch }} --output type=local,dest=./prebuilds,platform-split=false -f ./.github/docker/Dockerfile.glibc .
5353
5454
- id: upload
5555
name: Upload prebuild
5656
uses: actions/upload-artifact@v4
5757
with:
58-
name: build-linux
58+
name: build-linux-${{ matrix.linux_arch }}
5959
path: prebuilds/
6060
if-no-files-found: 'error'
6161
retention-days: 1

0 commit comments

Comments
 (0)