Skip to content

Commit

Permalink
ci(get-ctr): != => (! exp)
Browse files Browse the repository at this point in the history
  • Loading branch information
2moe committed Apr 2, 2024
1 parent a0fef76 commit aa3dd98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/get-ctr.rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Set up QEMU
# if: (!contains(fromJSON('["x64", "rv64gc"]'), matrix.arch))
if: matrix.arch != 'x64' || matrix.machine != 'armbian'
if: (!matrix.arch == 'x64') || (!matrix.machine == 'armbian')
uses: docker/setup-qemu-action@v3

- uses: actions/checkout@v4
Expand Down

0 comments on commit aa3dd98

Please sign in to comment.