Skip to content

Commit 28deaac

Browse files
committed
review: fix conditional steps.
Signed-off-by: Piotr Sikora <[email protected]>
1 parent 6a0e978 commit 28deaac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ jobs:
112112
key: bazel-${{ matrix.os }}-${{ matrix.runtime }}-${{ hashFiles('WORKSPACE', '.bazelrc', '.bazelversion', 'bazel/cargo/Cargo.raze.lock', 'bazel/dependencies.bzl', 'bazel/repositories.bzl') }}
113113

114114
- name: Generate inspector files
115-
if: ${{ matrix.runtime }} == 'v8'
115+
if: matrix.runtime == 'v8'
116116
run: |
117117
bazel build --verbose_failures --test_output=errors --define runtime=${{ matrix.runtime }} @v8//:generated_inspector_files
118118
119119
- name: Generate torque files
120-
if: ${{ matrix.runtime }} == 'v8'
120+
if: matrix.runtime == 'v8'
121121
run: |
122122
bazel build --verbose_failures --test_output=errors --define runtime=${{ matrix.runtime }} @v8//:noicu/generated_torque_files
123123

0 commit comments

Comments
 (0)