Skip to content

Commit a884e0d

Browse files
committed
Fix
1 parent 82c2fa5 commit a884e0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
253253
- name: Build Unix
254254
shell: bash
255-
if: ${{ runner.os }} != "Windows"
255+
if: runner.os != "Windows"
256256
run: |
257257
ninja -v -C ${{ steps.setup-stage.outputs.build-prefix }}/build stage2-package
258258
release_dir=`find ${{ steps.setup-stage.outputs.build-prefix }}/build -iname 'stage2-bins'`
@@ -261,7 +261,7 @@ jobs:
261261
# There is an issue with building on Windows with bash so we use power shell.
262262
# ninja: error: mkdir(tools/clang/tools/extra/clang-tidy/misc/ConfusableTable/CMakeFiles/clang-tidy-confusable-chars-gen.dir/C_/actions-runner/llvm-project/llvm-project/llvm): No such file or directory
263263
- name: Build Windows
264-
if: ${{ runner.os }} == "Windows"
264+
if: runner.os == "Windows"
265265
run: |
266266
ninja -v -C build stage2-package
267267

0 commit comments

Comments
 (0)