Skip to content

Commit 39b1d20

Browse files
authored
Merge pull request #91 from shruthis4/cleanup-workflows
Fix ODH integration workflow to run only amd64 on push
2 parents b8d8c7a + 4f75457 commit 39b1d20

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/integration-odh.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
run:
4141
strategy:
4242
matrix:
43-
arch: [amd64, arm64]
43+
# 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"]') }}
4445
uses: ./.github/workflows/_run-kustomize-e2e.yaml
4546
secrets: inherit
4647
with:

0 commit comments

Comments
 (0)