Skip to content

Commit e72b850

Browse files
committed
ci: fix path
1 parent f30d8f1 commit e72b850

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,14 +258,19 @@ jobs:
258258
- name: Build nested
259259
run: bazel build //nested:doxygen_a //nested:doxygen_b
260260
working-directory: examples/nested
261-
- name: Check output
261+
- name: Check output (a)
262262
uses: andstor/file-existence-action@v3
263263
with:
264-
files: examples/bazel-bin/nested/html/index.html
264+
files: examples/bazel-bin/nested/a/html/index.html
265265
fail: true
266-
- name: Check doxygen version in produced index.html
267-
run: grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/nested/a/html/index.html
266+
- name: Check output (b)
267+
uses: andstor/file-existence-action@v3
268+
with:
269+
files: examples/bazel-bin/nested/b/html/index.html
270+
fail: true
271+
- name: Check doxygen version in produced index.html (a)
272+
run: grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/a/html/index.html
268273
shell: bash
269-
- name: Check doxygen version in produced index.html
270-
run: grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/nested/b/html/index.html
274+
- name: Check doxygen version in produced index.html (b)
275+
run: grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/b/html/index.html
271276
shell: bash

0 commit comments

Comments
 (0)