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 <Hyounggyu.Choi@ibm.com>
  • Loading branch information
BbolroC committed Oct 8, 2024
1 parent e1061b2 commit 0991df1
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 0991df1

Please sign in to comment.