We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd88c22 commit 0d456a2Copy full SHA for 0d456a2
1 file changed
.github/workflows/docker-launchql.yaml
@@ -24,8 +24,10 @@ jobs:
24
matrix:
25
include:
26
- platform: linux/amd64
27
+ arch: amd64
28
runner: ubuntu-latest # x86_64
29
- platform: linux/arm64
30
+ arch: arm64
31
runner: ubuntu-24.04-arm # native arm
32
runs-on: ${{ matrix.runner }}
33
@@ -107,7 +109,8 @@ jobs:
107
109
if: github.event_name != 'pull_request'
108
110
uses: actions/upload-artifact@v4
111
with:
- name: digests-${{ matrix.platform }}
112
+ # Artifact names cannot contain slashes, so we use matrix.arch
113
+ name: digests-${{ matrix.arch }}
114
path: ${{ runner.temp }}/digests/*
115
116
# Assemble per-architecture images into a single
0 commit comments