Skip to content

Commit

Permalink
chore: distinct names
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed May 24, 2024
1 parent ad505a1 commit 6ba75ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
linux_arch: [linux/s390x, linux/arm64, linux/amd64]
linux_arch: [s390x, arm64, amd64]
steps:
- uses: actions/checkout@v4

Expand All @@ -49,13 +49,13 @@ jobs:
- name: Run Buildx
run: |
docker buildx create --name builder --bootstrap --use
docker buildx build --platform ${{ matrix.linux_arch }} --output type=local,dest=./prebuilds,platform-split=false -f ./.github/docker/Dockerfile.glibc .
docker buildx build --platform linux/${{ matrix.linux_arch }} --output type=local,dest=./prebuilds,platform-split=false -f ./.github/docker/Dockerfile.glibc .
- id: upload
name: Upload prebuild
uses: actions/upload-artifact@v4
with:
name: build-linux
name: build-linux-${{ matrix.linux_arch }}
path: prebuilds/
if-no-files-found: 'error'
retention-days: 1
Expand Down

0 comments on commit 6ba75ee

Please sign in to comment.