We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8d8c7a + 4f75457 commit 39b1d20Copy full SHA for 39b1d20
1 file changed
.github/workflows/integration-odh.yaml
@@ -40,7 +40,8 @@ jobs:
40
run:
41
strategy:
42
matrix:
43
- arch: [amd64, arm64]
+ # Only run amd64 on push (image not built for arm64), allow both on manual trigger
44
+ arch: ${{ github.event_name == 'workflow_dispatch' && fromJSON('["amd64", "arm64"]') || fromJSON('["amd64"]') }}
45
uses: ./.github/workflows/_run-kustomize-e2e.yaml
46
secrets: inherit
47
with:
0 commit comments