Skip to content

Commit

Permalink
Fix and operator
Browse files Browse the repository at this point in the history
  • Loading branch information
perkfly committed Jan 19, 2024
1 parent ebe9f02 commit 260500b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:
run: brew install make

# build the x64 Windows wheel
- if: runner.os == 'Windows' and runner.arch == 'auto64'
- if: runner.os == 'Windows' && runner.arch == 'auto64'
run: echo "{CIBW_ARCHS_WINDOWS}={auto64}" >> $GITHUB_ENV

# build the x32 Windows wheel
- if: runner.os == 'Windows' and runner.arch == 'auto32'
- if: runner.os == 'Windows' && runner.arch == 'auto32'
run: echo "{CIBW_ARCHS_WINDOWS}={auto32} {ARCH}={win32}" >> $GITHUB_ENV

- name: Build
Expand Down

0 comments on commit 260500b

Please sign in to comment.