Skip to content

Commit 0d456a2

Browse files
committed
push fix for upload
1 parent bd88c22 commit 0d456a2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/docker-launchql.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ jobs:
2424
matrix:
2525
include:
2626
- platform: linux/amd64
27+
arch: amd64
2728
runner: ubuntu-latest # x86_64
2829
- platform: linux/arm64
30+
arch: arm64
2931
runner: ubuntu-24.04-arm # native arm
3032
runs-on: ${{ matrix.runner }}
3133

@@ -107,7 +109,8 @@ jobs:
107109
if: github.event_name != 'pull_request'
108110
uses: actions/upload-artifact@v4
109111
with:
110-
name: digests-${{ matrix.platform }}
112+
# Artifact names cannot contain slashes, so we use matrix.arch
113+
name: digests-${{ matrix.arch }}
111114
path: ${{ runner.temp }}/digests/*
112115

113116
# Assemble per-architecture images into a single

0 commit comments

Comments
 (0)