Skip to content

Commit 8955de8

Browse files
committed
[GHA] Attempt to fix the DocC action
1 parent a67fde7 commit 8955de8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
echo "latest-tag=$(git tag -l | tail -1)" >> $GITHUB_ENV
7878
- name: (latest-tag) Check if Documentation Exists
7979
run: |
80-
[ -d docs-out/${{ env.latest-tag }} ] && echo "latest-tag-has-docs=1" >> $GITHUB_ENV
80+
if [ -d "docs-out/${{ env.latest-tag }}" ]; then echo "latest-tag-has-docs=1" >> "$GITHUB_ENV"; fi
8181
8282
# 8. If there is no documentation for the latest tag, build it.
8383
- name: (latest-tag) Checkout Package

0 commit comments

Comments
 (0)