Skip to content

Commit

Permalink
Try to fix windows ock artefact
Browse files Browse the repository at this point in the history
  • Loading branch information
coldav committed Jan 9, 2025
1 parent fec6cf0 commit 4abf990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/do_build_ock_artefact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
llvm_version: ${{ inputs.llvm_version }}
llvm_build_type: RelAssert
cross_arch: ${{ steps.calc_vars.outputs.arch == 'x86_64' && 'none' || steps.calc_vars.outputs.arch }}
os: ${{ 'windows' && contains(inputs.target, 'windows') || 'ubuntu' }}
os: ${{ contains(inputs.target, 'windows') && 'windows' || 'ubuntu' }}

- name: build ock x86
if: steps.calc_vars.outputs.arch == 'x86_64'
Expand Down

0 comments on commit 4abf990

Please sign in to comment.