Skip to content

Commit 5abbe48

Browse files
authored
Merge pull request #228 from vados-cosmonic/fix(ci)=bash-file-check
fix(ci): bash check
2 parents dcc9149 + 9cd83e1 commit 5abbe48

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/mdbook.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ jobs:
5353
python-version: '3.13'
5454

5555
# Ensure the build generated properly
56-
- run: |
57-
if [[ ! -f "${{ env.ARTIFACT_PATH }}/index.html" ]]
56+
- name: Ensure build outputs are present
57+
shell: bash
58+
run: |
59+
if [[ ! -f "${{ env.ARTIFACT_PATH }}/index.html" ]]; then
5860
echo "[error] index.html @ [${{ env.ARTIFACT_PATH }}] is missing. Build or path misconfigured";
5961
exit 1;
6062
fi

0 commit comments

Comments
 (0)