Skip to content

Commit

Permalink
gha: Fix condition for skipping ORAS installation on s390x
Browse files Browse the repository at this point in the history
For CDH, the skipping condition for ORAS on s390x must have been

`if: matrix.arch != 's390x'` instead of `if: matrix.platform.arch != 's390x'`

Signed-off-by: Hyounggyu Choi <[email protected]>
  • Loading branch information
BbolroC authored and mkulke committed Oct 8, 2024
1 parent e1061b2 commit c9f2593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
- uses: oras-project/setup-oras@v1
with:
version: 1.2.0
if: matrix.platform.arch != 's390x'
if: matrix.arch != 's390x'

- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
Expand Down

0 comments on commit c9f2593

Please sign in to comment.