We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1809e commit e18f050Copy full SHA for e18f050
.github/workflows/build-iso.yml
@@ -19,8 +19,10 @@ jobs:
19
matrix:
20
include:
21
- arch: aarch64
22
+ iso_name: minikube-arm64.iso
23
runs-on: ubuntu-24.04-arm64-massive
24
- arch: x86_64
25
+ iso_name: minikube-amd64.iso
26
runs-on: ubuntu-24.04-amd64-massive
27
28
runs-on: "${{ matrix.runs-on }}"
@@ -51,4 +53,4 @@ jobs:
51
53
52
54
- name: Upload ISO
55
run: |
- aws s3 cp ./out/minikube-${{ matrix.arch }}.iso s3://dz-cli/minikube/minikube-${{ matrix.arch }}.iso
56
+ aws s3 cp ./out/${{ matrix.iso_name }} s3://dz-cli/minikube/${{ matrix.iso_name }}
0 commit comments